GrapeCity SPREAD for WPF 2.0J
CanUserAddRows プロパティ

ItemsSource プロパティが null 参照 (Visual Basicでは Nothing) でない場合にユーザーが UI 操作によって新しい行を追加できるかどうかを取得または設定します。
構文
'Declaration
 
Public Property CanUserAddRows As Boolean
public bool CanUserAddRows {get; set;}

プロパティ値

ユーザーが新しい行を追加できる場合は true。それ以外の場合は false
次のサンプルは CanUserAddRows プロパティの使用方法を説明します。
private void SG2_InitializingNewItem(object sender, InitializingNewItemEventArgs e)
{
    // Initialize the new item of new row.
    // e.NewItem = new MyData();
}
Private Sub SG2_InitializingNewItem(sender As Object, e As InitializingNewItemEventArgs)
    ' Initialize the new item of new row.
    ' e.NewItem = new MyData();
End Sub
<sg:GcSpreadGrid Name="SG2" ItemsSource="{Binding}" CanUserAddRows="True" NewRowPosition="Top" InitializingNewItem="SG2_InitializingNewItem" />
参照

GcSpreadGrid クラス
GcSpreadGrid メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.