The Aspose.Words.Tables namespace contains classes that represent tables, rows, cells and their formatting.
Classes | |
class | Cell |
Represents a table cell. To learn more, visit the Working with Tables documentation article. More... | |
class | CellCollection |
Provides typed access to a collection of Cell nodes. To learn more, visit the Working with Tables documentation article. More... | |
class | CellFormat |
Represents all formatting for a table cell. To learn more, visit the Working with Tables documentation article. More... | |
class | PreferredWidth |
Represents a value and its unit of measure that is used to specify the preferred width of a table or a cell. To learn more, visit the Working with Tables documentation article. More... | |
class | Row |
Represents a table row. To learn more, visit the Working with Tables documentation article. More... | |
class | RowCollection |
Provides typed access to a collection of Row nodes. To learn more, visit the Working with Tables documentation article. More... | |
class | RowFormat |
Represents all formatting for a table row. To learn more, visit the Working with Tables documentation article. More... | |
class | Table |
Represents a table in a Word document. To learn more, visit the Working with Tables documentation article. More... | |
class | TableCollection |
Provides typed access to a collection of Table nodes. To learn more, visit the Working with Tables documentation article. More... | |
Enumerations | |
enum class | AutoFitBehavior |
Determines how Aspose.Words resizes the table when you invoke the AutoFit() method. More... | |
enum class | CellMerge |
Specifies how a cell in a table is merged with other cells. More... | |
enum class | CellVerticalAlignment |
Specifies vertical justification of text inside a table cell. More... | |
enum class | PreferredWidthType |
Specifies the unit of measurement for the preferred width of a table or cell. More... | |
enum class | TableAlignment |
Specifies alignment for an inline table. More... | |
enum class | TableStyleOptions |
Specifies how table style is applied to a table. More... | |
enum class | TextWrapping |
Specifies how text is wrapped around the table. More... | |
|
strong |
Determines how Aspose.Words resizes the table when you invoke the AutoFit() method.
Shows how to build a new table while applying a style.
Shows how to build a formatted 2x2 table.
Enumerator | |
---|---|
AutoFitToContents | Aspose.Words enables the AutoFit option, removes the preferred width from the table and all cells and then updates the table layout. In the resulting table, cell widths are updated to fit the table contents. Most likely, the table will shrink. |
AutoFitToWindow | When you use this value, Aspose.Words enables the AutoFit option, sets the preferred width for the table to 100%, removes preferred widths from all cells and then updates the table layout. As a result, the table occupies all available width and the cell widths are updated to fit table contents. |
FixedColumnWidths | Aspose.Words disables the AutoFit option and removes the preferred with from the table. The widths of the cells remain as they are specified by their Width properties. |
|
strong |
Specifies how a cell in a table is merged with other cells.
Shows how to merge table cells vertically.
Shows how to merge table cells horizontally.
Prints the horizontal and vertical merge type of a cell.
Enumerator | |
---|---|
None | The cell is not merged. |
First | The cell is the first cell in a range of merged cells. |
Previous | The cell is merged to the previous cell horizontally or vertically. |
|
strong |
Specifies vertical justification of text inside a table cell.
Shows how to build a formatted 2x2 table.
Enumerator | |
---|---|
Top | Text is aligned at the top of a cell. |
Center | Text is aligned in the middle of a cell. |
Bottom | Text is aligned at the bottom of the cell. |
|
strong |
Specifies the unit of measurement for the preferred width of a table or cell.
Shows how to verify the preferred width type and value of a table cell.
|
strong |
Specifies alignment for an inline table.
Shows how to apply an outline border to a table.
Enumerator | |
---|---|
Left | The table is aligned to the left. |
Center | The table is centered. |
Right | The table is aligned to the right. |
|
strong |
Specifies how table style is applied to a table.
Shows how to build a new table while applying a style.
Enumerator | |
---|---|
None | No table style formatting is applied. |
FirstRow | Apply first row conditional formatting. |
LastRow | Apply last row conditional formatting. |
FirstColumn | Apply 1 first column conditional formatting. |
LastColumn | Apply last column conditional formatting. |
RowBands | Apply row banding conditional formatting. |
ColumnBands | Apply column banding conditional formatting. |
Default2003 | Row and column banding is applied. This is Microsoft Word default for old formats such as DOC, WML and RTF. |
Default | This is Microsoft Word defaults. |
|
strong |
Specifies how text is wrapped around the table.
Shows how to work with table text wrapping.
Enumerator | |
---|---|
None | Text and table is displayed in the order of their appearance in the document. |
Around | Text is wrapped around the table occupying available side space. |
Default | Default value. |