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
vb.net
vb.net
Public Function GetRowProperties(ByVal rowIndex As Integer) As RowProperties
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 Block
vb.net
vb.net
titlevb.net
Dim rowProps As RowProperties = ws.GetRowProperties(0)