Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a RowProperties object representing the row specified by index.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [RowProperties|RowProperties] object representing the row specified by index.{excerpt}
{signature:C#}
 public RowProperties GetRowProperties(int rowIndex)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function GetRowProperties(ByVal rowIndex As Integer) As RowProperties
Parameters

...

The 0-based index of the row.

Returns

A RowProperties object representing the specified row.

{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#}
RowProperties rowProps = ws.GetRowProperties(0);
{code}
{code:vb.net
|title=vb.net
}
Dim rowProps As RowProperties = ws.GetRowProperties(0){code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle