PowerTools SPREAD for Windows Forms 8.0J
ParentRelationName プロパティ (DefaultSheetDataModel)


データの階層表示に使用されるデータリレーションの名前を取得します。
構文
'Declaration
 
Public ReadOnly Property ParentRelationName As String
'使用法
 
Dim instance As DefaultSheetDataModel
Dim value As String
 
value = instance.ParentRelationName
public string ParentRelationName {get;}

プロパティ値

親の名前を含む String
次のサンプルコードは、データモデルの親リレーションを返します。
private void fpSpread1ChildViewCreated(object sender, FarPoint.Win.Spread.ChildViewCreatedEventArgs e) 
{
    FarPoint.Win.Spread.Model.DefaultSheetDataModel dm;
    dm = e.SheetView.Models.Data;
    string s;
    s = dm.ParentRelationName;
    MessageBox.Show("The name of the parent relation is " + s);
}
Private Sub FpSpread1ChildViewCreated(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ChildViewCreatedEventArgs) Handles
fpSpread1.ChildViewCreated
    Dim dm As FarPoint.Win.Spread.Model.DefaultSheetDataModel
    dm = e.SheetView.Models.Data
    Dim s As String
    s = dm.ParentRelationName
    MessageBox.Show("The name of the parent relation is " & s)
End Sub
参照

DefaultSheetDataModel クラス
DefaultSheetDataModel メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.