[]
Adds a new TextColumn to the section.
public TextColumn Add()
Public Function Add() As TextColumn
Type | Description |
---|---|
TextColumn | The newly created TextColumn. |
Adds a new TextColumn to the section.
public TextColumn Add(float width)
Public Function Add(width As Single) As TextColumn
Type | Name | Description |
---|---|---|
float | width | The width of the new text column, in points. |
Type | Description |
---|---|
TextColumn | The newly created TextColumn. |
Adds a new TextColumn to the section.
This method sets the EvenlySpaced property to false.
public TextColumn Add(float width, float spaceAfter)
Public Function Add(width As Single, spaceAfter As Single) As TextColumn
Type | Name | Description |
---|---|---|
float | width | The width of the new text column, in points. |
float | spaceAfter | The space between this column and the next column, in points. |
Type | Description |
---|---|
TextColumn | The newly created TextColumn. |