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

{example}