Spread Windows Forms 12.0 Product Documentation
ParentRelationName Property (DefaultSheetDataModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetDataModel Class : ParentRelationName Property
Gets the name of the data relation being used for a hierarchical display of data.
Syntax
'Declaration
 
Public ReadOnly Property ParentRelationName As String
'Usage
 
Dim instance As DefaultSheetDataModel
Dim value As String
 
value = instance.ParentRelationName
public string ParentRelationName {get;}

Property Value

String containing the name of the parent
Example
This example returns the parent relation for the data model.
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
See Also

Reference

DefaultSheetDataModel Class
DefaultSheetDataModel Members