GrapeCity SPREAD for WPF 2.0J
ShowRecommendedValue プロパティ (TextCellType)

入力候補値を表示するかどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Property ShowRecommendedValue As Boolean
public bool ShowRecommendedValue {get; set;}

プロパティ値

入力候補値を表示する場合は true。それ以外の場合は false
次のサンプルは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
参照

TextCellType クラス
TextCellType メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.