Page tree

Versions Compared

Key

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

...

Wiki Markup
{description}
{excerpt}Returns the width \- in points \(1/72 of an inch\) \- of the specified column. When converted to character widths, this must be a value that is between 0 \- 255.

...

Signature
C#C#
{excerpt}
{signature:C#}
 public double GetColumnWidth(int columnIndex)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function GetColumnWidth(ByVal columnIndex As Integer) As Double
Parameters
Param
columnIndexcolumnIndexThe
{signature}
{parameters}
{param:columnIndex}The column's 0\-based index, relative to the first column in the Area.
Returns

The width of the column, in points.

{param}
{returns}The width of the column, in points.{returns}
{example}{code:csharp|title=C#}
double colWidth = a.GetColumnWidth(0);
{code}
{code:vbnet|title=vb.net
}
Dim colWidth As Double = a.GetColumnWidth(0)
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle

...

{code}

{example}
{scrollbar}