Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / TextColumnCollection Class / Add Method / Add(Single,Single) Method
The width of the new text column, in points.
The space between this column and the next column, in points.

In This Topic
    Add(Single,Single) Method
    In This Topic
    Adds a new TextColumn to the section.

    This method sets the EvenlySpaced property to false.

    Syntax
    'Declaration
     
    Public Overloads Function Add( _
       ByVal width As System.Single, _
       ByVal spaceAfter As System.Single _
    ) As TextColumn
    public TextColumn Add( 
       System.float width,
       System.float spaceAfter
    )

    Parameters

    width
    The width of the new text column, in points.
    spaceAfter
    The space between this column and the next column, in points.

    Return Value

    The newly created TextColumn.
    See Also