RVTDocs.com

TableSectionData.InsertRow

Method
Description:
Inserts a row data at a specified index.
Syntax
public void InsertRow(
	int nIndex
)
Examples
public void CreateSubtitle(ViewSchedule schedule)
{
    TableData colTableData = schedule.GetTableData();

    TableSectionData tsd = colTableData.GetSectionData(SectionType.Header);
    tsd.InsertRow(tsd.FirstRowNumber + 1);
    tsd.SetCellText(tsd.FirstRowNumber + 1, tsd.FirstColumnNumber, "Schedule of column top and base levels with offsets");
}
Parameters
Parameter Type Description
nIndex Int32 An integer index.
Return Value
Exceptions
Exception Condition
ArgumentException The row can't be inserted in data section of standard schedule except Key Schedule, Sheet List Schedule or following categories without emdeded schedule: MEP Space, Room, Area. or nIndex is invalid index.