[]
Represents a table row element in a body content.
public class Row : FormattedContentObject, IBrowsable<Row>
Gets the collection of cells in this table row.
public CellCollection Cells { get; }
Provides access to the table row formatting properties.
public RowFormat Format { get; }
Gets the index of this row in the parent table.
public int Index { get; }
Gets the next table row.
public Row Next { get; }
Gets the previous table row.
public Row Previous { get; }
Gets unique identifiers used to track the row editing session.
public RowRevisionId RevisionId { get; }
Gets the parent table of this row.
public Table Table { get; }
Adds a ContentControl to the end of the row.
public ContentControl AddContentControl(ContentControlType type, bool fillContent = true)
type
ContentControlTypeThe new content control type.
fillContent
boolWhether to fill the new control content with default data.
The added ContentControl.