Number of rows in the datasheet.
VB: Property Get/Let Rows As Integer
C++: int Rows
C#: int Rows
Sub Rows() Dim app As Origin.IOApplication Dim ds As Origin.Datasheet app = New Origin.ApplicationSI ds = app.ActivePage.Layers(0) If Not ds Is Nothing Then MsgBox(ds.Name.ToString() + " has " + ds.Rows.ToString() + " rows!") End If End Sub
8.0SR2