Enterra.V8x1C.DOM.TablePart.Insert C# (CSharp) Method

Insert() public method

Вставить (Insert)
public Insert ( int index ) : TablePartRow
index int
return TablePartRow
        public TablePartRow Insert(int index)
        {
            var ptr = InvokeV8Method("Insert", index);
            return ptr != null ? new TablePartRow(Session, ptr) : null;
        }