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

GrapeCity.Windows.SpreadGrid 名前空間 > TextCellType クラス : Multiline プロパティ
セルが複数行のテキストを受け入れて表示できるかどうかを取得または設定します。
シンタックス
'宣言
 
Public Property Multiline As Boolean
public bool Multiline {get; set;}

プロパティ値

セルが複数行セルの場合は true。それ以外の場合は false

既定値は false です。
解説
TextWrappingSystem.Windows.TextWrapping.NoWrap でない場合、ユーザーが複数行セルにテキストボックスの幅を超えるテキストを入力すると、テキストが折り返されます。
使用例
次のサンプルはTextCellTypeを作成しEnterキーによる複数行入力およびウォーターマーク関連のプロパティを設定します。
public void SetTextCell1()
{
TextCellType textCellType1 = new TextCellType();
textCellType1.Multiline = true;
textCellType1.AcceptsReturn = true;
textCellType1.WatermarkDisplayNull = "DisplayNullText";
textCellType1.WatermarkDisplayNullForeground = new SolidColorBrush(Colors.Gray);
textCellType1.WatermarkNull = "NullText";
textCellType1.WatermarkNullForeground = new SolidColorBrush(Colors.Gray);

this._gcSpreadGrid1[0, 0].CellType = textCellType1;
}
Public Sub SetTextCell1()
Dim textCellType1 As New TextCellType()
textCellType1.Multiline = True
textCellType1.AcceptsReturn = True
textCellType1.WatermarkDisplayNull = "DisplayNullText"
textCellType1.WatermarkDisplayNullForeground = New SolidColorBrush(Colors.Gray)
textCellType1.WatermarkNull = "NullText"
textCellType1.WatermarkNullForeground = New SolidColorBrush(Colors.Gray)

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

TextCellType クラス
TextCellType メンバ