Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Returns a RowProperties object representing the row specified by index.

Signature
C#
C#
 public RowProperties GetRowProperties(int rowIndex)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function GetRowProperties(ByVal rowIndex As Integer) As RowProperties
{signature}
{parameters}
{param:rowIndex}The 0\-based index of the row.{param}
{returns}A {{RowProperties}} object representing the specified row.{returns}
{example}{code:csharp|title=C#}
Parameters
Param
rowIndex
rowIndex

The 0-based index of the row.

Returns

A RowProperties object representing the specified row.

Example
Code Block
csharp
csharp
titleC#

RowProperties rowProps = ws.GetRowProperties(0);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim rowProps As RowProperties = ws.GetRowProperties(0)
{code} {example}