[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.Row

Class Row

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

Represents a table row element in a body content.

public class Row : FormattedContentObject, IBrowsable<Row>
Inheritance
object
Row
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Properties

Cells

Gets the collection of cells in this table row.

public CellCollection Cells { get; }

Property Value

CellCollection

Format

Provides access to the table row formatting properties.

public RowFormat Format { get; }

Property Value

RowFormat

Index

Gets the index of this row in the parent table.

public int Index { get; }

Property Value

int

Next

Gets the next table row.

public Row Next { get; }

Property Value

Row

Previous

Gets the previous table row.

public Row Previous { get; }

Property Value

Row

RevisionId

Gets unique identifiers used to track the row editing session.

public RowRevisionId RevisionId { get; }

Property Value

RowRevisionId

Table

Gets the parent table of this row.

public Table Table { get; }

Property Value

Table

Methods

AddContentControl(ContentControlType, bool)

Adds a ContentControl to the end of the row.

public ContentControl AddContentControl(ContentControlType type, bool fillContent = true)

Parameters

type ContentControlType

The new content control type.

fillContent bool

Whether to fill the new control content with default data.

Returns

ContentControl

The added ContentControl.