Novacode.Table.InsertTableBeforeSelf C# (CSharp) Method

InsertTableBeforeSelf() public method

Insert a new Table before this Table, this Table can be from this document or another document.
public InsertTableBeforeSelf ( Table t ) : Table
t Table The Table t to be inserted
return Table
        public override Table InsertTableBeforeSelf(Table t)
        {
            return base.InsertTableBeforeSelf(t);
        }

Same methods

Table::InsertTableBeforeSelf ( int rowCount, int columnCount ) : Table