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 ColumnProperties object representing the column specified by index.

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

The 0-based index of the column.

Returns

A ColumnProperties object representing the specified column.

Example
Code Block
csharp
csharp
titleC#

ColumnProperties colProps = ws.GetColumnProperties(0);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim colProps As ColumnProperties = ws.GetColumnProperties(0)
{code} {example}