GrapeCity SPREAD for WPF 2.0J
Content プロパティ (ButtonCellType)

ButtonCellType の内容を取得または設定します。
構文
'Declaration
 
Public Property Content As Object
public object Content {get; set;}

プロパティ値

セル型の内容を含むオブジェクト。既定値は null 参照 (Visual Basicでは Nothing) です。
次のサンプルは ButtonCellType にテキストを設定する方法を説明します。
<sg:GcSpreadGrid>
    <sg:GcSpreadGrid.Columns>
        <sg:Column>
            <sg:Column.CellType>
                <sg:ButtonCellType Content="Button"/>
            </sg:Column.CellType>
        </sg:Column>
    </sg:GcSpreadGrid.Columns>
</sg:GcSpreadGrid>
ButtonCellType button = new ButtonCellType();
button.Content = "button";
gcSpreadGrid1.Columns[0].CellType = button;
Dim button As New ButtonCellType()
button.Content = "button"
gcSpreadGrid1.Columns(0).CellType = button
参照

ButtonCellType クラス
ButtonCellType メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.