MESCIUS SPREAD for Windows Forms 15.0J
TextCellType コンストラクタ(TextCellType)
使用例 

コピー元のテキスト セル型
指定したセル型から新しいコピーを作成します(コピーコンストラクター)。
構文
'宣言
 
Public Function New( _
   ByVal g As TextCellType _
)
public TextCellType( 
   TextCellType g
)

パラメータ

g
コピー元のテキスト セル型
使用例
次のサンプルコードは、テキスト型セルを作成します。
FarPoint.Win.Spread.CellType.TextCellType txt = new FarPoint.Win.Spread.CellType.TextCellType();
txt.CharacterCasing = CharacterCasing.Upper;            
fpSpread1.Sheets[0].Cells[0, 0].CellType = txt;
fpSpread1.Sheets[0].Cells[0, 0].Text = "This is a text cell.";
FarPoint.Win.Spread.CellType.TextCellType txt1 = new FarPoint.Win.Spread.CellType.TextCellType(txt);
fpSpread1.Sheets[0].Cells[0, 1].CellType = txt1;
fpSpread1.Sheets[0].Cells[0, 1].Text = "text cell.";
Dim txt As New FarPoint.Win.Spread.CellType.TextCellType()
txt.CharacterCasing = CharacterCasing.Upper         
fpSpread1.Sheets(0).Cells(0, 0).CellType = txt
fpSpread1.Sheets(0).Cells(0, 0).Text = "This is a text cell."
Dim txt1 As New FarPoint.Win.Spread.CellType.TextCellType(txt)
fpSpread1.Sheets(0).Cells(0, 1).CellType = txt1
fpSpread1.Sheets(0).Cells(0, 1).Text = "text cell."
参照

TextCellType クラス
TextCellType メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.