Spread Windows Forms 6.0 Product Documentation
GetDataRowFromModelRow Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > IDataSourceSupport Interface : GetDataRowFromModelRow Method


row
Model row index to be converted

Glossary Item Box

Converts the model row index to the data source row index.

Syntax

Visual Basic (Declaration) 
Function GetDataRowFromModelRow( _
   ByVal row As Integer _
) As Integer
Visual Basic (Usage)Copy Code
Dim instance As IDataSourceSupport
Dim row As Integer
Dim value As Integer
 
value = instance.GetDataRowFromModelRow(row)
C# 
int GetDataRowFromModelRow( 
   int row
)

Parameters

row
Model row index to be converted

Return Value

Integer data source row index

Example

This example converts the model row index to the data source row index.
C#Copy Code
FarPoint.Win.Spread.Model.IDataSourceSupport dss ;
DataTable dt = new DataTable("Testing");
int i;
dt.Columns.Add("Number");
dt.Columns.Add("Letter");
dt.Rows.Add(new Object[] {"1", "One"});
dt.Rows.Add(new Object[] {"2", "Two"});
dss = (FarPoint.Win.Spread.Model.IDataSourceSupport)fpSpread1.ActiveSheet.Models.Data;
fpSpread1.DataSource = dt;
i = dss.GetDataRowFromModelRow(1);
label1.Text = "The data source row index is " + i.ToString();
Visual BasicCopy Code
Dim dss As FarPoint.Win.Spread.Model.IDataSourceSupport
Dim dt As New DataTable("Testing")
Dim i As Integer
dt.Columns.Add("Number")
dt.Columns.Add("Letter")
dt.Rows.Add(New Object() {"1", "One"})
dt.Rows.Add(New Object() {"2", "Two"})
dss = FpSpread1.ActiveSheet.Models.Data
FpSpread1.DataSource = dt
i = dss.GetDataRowFromModelRow(1)
Label1.Text = "The data source row index is " & i.ToString()

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.