Represents a single text column. TextColumn is a member of the TextColumnCollection collection. The TextColumns collection includes all the columns in a section of a document.
TextColumn objects are only used to specify columns with custom width and spacing. If you want the columns in the document to be of equal width, set TextColumns.EvenlySpaced to true.
When a new TextColumn is created it has its width and spacing set to zero.
Shows how to create unevenly spaced columns.
#include <Aspose.Words.Cpp/TextColumn.h>
Public Member Functions | |
double | get_SpaceAfter () |
Gets or sets the space between this column and the next column in points. Not required for the last column. More... | |
double | get_Width () |
Gets or sets the width of the text column in points. More... | |
virtual const TypeInfo & | GetType () const override |
virtual bool | Is (const TypeInfo &target) const override |
void | set_SpaceAfter (double value) |
Setter for get_SpaceAfter. More... | |
void | set_Width (double value) |
Setter for get_Width. More... | |
Static Public Member Functions | |
static const TypeInfo & | Type () |
double Aspose::Words::TextColumn::get_SpaceAfter | ( | ) |
Gets or sets the space between this column and the next column in points. Not required for the last column.
Shows how to create unevenly spaced columns.
double Aspose::Words::TextColumn::get_Width | ( | ) |
Gets or sets the width of the text column in points.
Shows how to create unevenly spaced columns.
|
overridevirtual |
Reimplemented from System::Object.
|
overridevirtual |
Reimplemented from System::Object.
void Aspose::Words::TextColumn::set_SpaceAfter | ( | double | value | ) |
Setter for Aspose::Words::TextColumn::get_SpaceAfter.
void Aspose::Words::TextColumn::set_Width | ( | double | value | ) |
Setter for Aspose::Words::TextColumn::get_Width.
|
static |