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

GrapeCity.Windows.SpreadGrid 名前空間 > EditBaseCellType クラス : TextTrimming プロパティ
セルの内容が内容領域に収まらないときに使用するテキストトリミング動作を取得または設定します。
シンタックス
'宣言
 
Public Property TextTrimming As TextTrimming
public TextTrimming TextTrimming {get; set;}

プロパティ値

使用するテキストトリミング動作を指定する System.Windows.TextTrimming 値の1つ。既定値は System.Windows.TextTrimming.None です。
使用例
次のサンプルは TextCellType を作成します。テキストをすべて表示できない場合のトリミングを設定します。
public void SetTextCell4()
{
TextCellType textCellType1 = new TextCellType();
textCellType1.TextTrimming = System.Windows.TextTrimming.CharacterEllipsis;
textCellType1.ShowRecommendedValue = true;
textCellType1.RecommendedValue = "http://www.grapecity.com";

this._gcSpreadGrid1[0, 0].CellType = textCellType1;
}
Public Sub SetTextCell4()
Dim textCellType1 As New TextCellType()
textCellType1.TextTrimming = System.Windows.TextTrimming.CharacterEllipsis
textCellType1.ShowRecommendedValue = True
textCellType1.RecommendedValue = "http://www.grapecity.com"

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

EditBaseCellType クラス
EditBaseCellType メンバ