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

GcTextBox コントロールが複数行の場合の折り返しルールを取得または設定します。
構文
'宣言
 
Public Property WrapMode As WrapMode
public WrapMode WrapMode {get; set;}

プロパティ値

テキストの折り返しルールを示す WrapMode 列挙体。

既定値は WrapMode.WordWrap です。
解説
WrapModeプロパティは、テキストの折り返し動作に対して有効になります。 WrapMode.WordWrap値は、テキストを単語で折り返すことを意味します。 WrapMode.CharWrap値は、テキストを文字で折り返すことを意味します。 このプロパティはセルが編集モードのときにのみ効果があります。
使用例
次のサンプルコードは、WrapMode プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
textcell.WrapMode = GrapeCity.Win.Spread.InputMan.CellType.WrapMode.WordWrap;
textcell.Multiline = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;
Dim textcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
textcell.WrapMode = GrapeCity.Win.Spread.InputMan.CellType.WrapMode.WordWrap
textcell.Multiline = True
fpSpread1.Sheets(0).Cells(0, 0).CellType = textcell
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ
Multiline プロパティ
AcceptsReturn プロパティ
AcceptsTab プロパティ
ScrollBars プロパティ

 

 


© MESCIUS inc. All rights reserved.