SPREAD for WPF 3.0J - GcSpreadGrid
TextWrapping プロパティ (TextCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > TextCellType クラス : TextWrapping プロパティ
テキストボックス内のテキストを折り返す方法を取得または設定します。これは依存関係プロパティです。
シンタックス
'宣言
 
Public Property TextWrapping As TextWrapping
public TextWrapping TextWrapping {get; set;}

プロパティ値

テキストボックス内のテキストを折り返す方法を示す System.Windows.TextWrapping 値の 1 つ。 既定値は TextWrapping.NoWrap です。
解説
TextWrappingSystem.Windows.TextWrapping.Wrap に設定すると、入力したテキストが TextCellType セルの端に達すると次の行に折り返され、新しい行が収まるように必要に応じて編集要素の高さが自動的に調整されます。
使用例
次のサンプルはTextCellTypeを作成し複数行とワードラップを設定します。
public void SetTextCell3()
{
TextCellType textCellType1 = new TextCellType();
//Enter edit status, select some text, the selection background will be Red.
textCellType1.SelectionBrush = new SolidColorBrush(Colors.Red);
textCellType1.SelectionOpacity = 0.6;
textCellType1.Multiline = true;
textCellType1.TextWrapping = System.Windows.TextWrapping.Wrap;

this._gcSpreadGrid1[0, 0].CellType = textCellType1;
}
Public Sub SetTextCell3()
Dim textCellType1 As New TextCellType()
'Enter edit status, select some text, the selection background will be Red.
textCellType1.SelectionBrush = New SolidColorBrush(Colors.Red)
textCellType1.SelectionOpacity = 0.6
textCellType1.Multiline = True
textCellType1.TextWrapping = System.Windows.TextWrapping.Wrap

Me._gcSpreadGrid1(0, 0).CellType = textCellType1
End Sub
参照

TextCellType クラス
TextCellType メンバ