MESCIUS SPREAD for Windows Forms 15.0J
CharacterCasing プロパティ (TextCellType)
使用例 

テキスト型セルの大文字小文字の設定を取得または設定します。
構文
'宣言
 
Public Property CharacterCasing As CharacterCasing
public CharacterCasing CharacterCasing {get; set;}

プロパティ値

大文字小文字の設定を決定する CharacterCasing 設定
使用例
次のサンプルコードは、テキストの表示方法(大文字小文字、複数行に折り返すかどうかなど)を指定します。
FarPoint.Win.Spread.CellType.TextCellType txt = new FarPoint.Win.Spread.CellType.TextCellType();
txt.CharacterCasing = CharacterCasing.Upper;
txt.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.Ascii;
txt.Multiline = true;
txt.ScrollBars = ScrollBars.Horizontal;
txt.Static = false;
fpSpread1.Sheets[0].Cells[0, 0].CellType = txt;
fpSpread1.Sheets[0].Cells[0, 0].Text = "This is a text cell.  It can provide a wide range of functionality.";
fpSpread1.Sheets[0].Columns[0].Width = 200;
fpSpread1.Sheets[0].Rows[0].Height = 50;
Dim txt As New FarPoint.Win.Spread.CellType.TextCellType()
txt.CharacterCasing = CharacterCasing.Upper
txt.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.Ascii
txt.Multiline = True
txt.ScrollBars = ScrollBars.Horizontal
txt.Static = False
FpSpread1.Sheets(0).Cells(0, 0).CellType = txt
FpSpread1.Sheets(0).Cells(0, 0).Text = "This is a text cell.  It can provide a wide range of functionality."
FpSpread1.Sheets(0).Columns(0).Width = 200
FpSpread1.Sheets(0).Rows(0).Height = 50
参照

TextCellType クラス
TextCellType メンバ

 

 


© MESCIUS inc. All rights reserved.