[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.Layout.TableFragment

Class TableFragment

Namespace
GrapeCity.Documents.Word.Layout
Assembly
GcDocs.Word.Layout.dll

Represents the Word table on a Page.

public class TableFragment : BlockElement
Inheritance
object
TableFragment
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Properties

ActualHeight

Gets the actual height of the table, in points.

public float ActualHeight { get; }

Property Value

float

ActualWidth

Gets the actual width of the table, in points.

public float ActualWidth { get; }

Property Value

float

Columns

Gets the list of table columns.

public List<TableColumn> Columns { get; }

Property Value

System.Collections.Generic.List<T><TableColumn>

GridColumns

Gets the list of table vertical grid lines.

public List<TableGridColumn> GridColumns { get; }

Property Value

System.Collections.Generic.List<T><TableGridColumn>

GridRows

Gets the list of table horizontal grid lines.

public List<TableGridRow> GridRows { get; }

Property Value

System.Collections.Generic.List<T><TableGridRow>

Rows

Gets the list of table rows.

public List<TableRow> Rows { get; }

Property Value

System.Collections.Generic.List<T><TableRow>

WordTable

Gets the source Table.

public Table WordTable { get; }

Property Value

Table