Spread Windows Forms 6.0 Product Documentation
ParentRowIndex Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetDataModel Class : ParentRowIndex Property


Glossary Item Box

Gets the index of the row in the parent data model associated with this child data model.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property ParentRowIndex As Integer
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetDataModel
Dim value As Integer
 
value = instance.ParentRowIndex
C# 
public int ParentRowIndex {get;}

Property Value

Integer row index of the parent

Example

This example returns the parent row index for the data model.
C#Copy Code
private void fpSpread1ChildViewCreated(object sender, FarPoint.Win.Spread.ChildViewCreatedEventArgs e) 
{
    FarPoint.Win.Spread.Model.DefaultSheetDataModel dm;
    dm = e.SheetView.Models.Data;
    int i;
    i = dm.ParentRowIndex;
    MessageBox.Show("The index of the parent row is " + i.ToString());
}
Visual BasicCopy Code
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 i As Integer
    i = dm.ParentRowIndex
    MessageBox.Show("The index of the parent row is " & i.ToString())
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.