[]
Inserts a new OMathMatrixColumn into the collection.
public OMathMatrixColumn Insert(int index)
Public Function Insert(index As Integer) As OMathMatrixColumn
Type | Name | Description |
---|---|---|
int | index | The zero-based index at which column should be inserted. |
Type | Description |
---|---|
OMathMatrixColumn | The inserted OMathMatrixColumn. |
Inserts a new OMathMatrixColumn into the collection.
public OMathMatrixColumn Insert(string[] cellsText, int index)
Public Function Insert(cellsText As String(), index As Integer) As OMathMatrixColumn
Type | Name | Description |
---|---|---|
string[] | cellsText | The column cells text array. |
int | index | The zero-based index at which column should be inserted. |
Type | Description |
---|---|
OMathMatrixColumn | The inserted OMathMatrixColumn. |
Inserts a new OMathMatrixColumn into the collection.
public OMathMatrixColumn Insert(int?[] cellsValue, int index)
Public Function Insert(cellsValue As Integer?(), index As Integer) As OMathMatrixColumn
Type | Name | Description |
---|---|---|
int?[] | cellsValue | The column cells value array. |
int | index | The zero-based index at which column should be inserted. |
Type | Description |
---|---|
OMathMatrixColumn | The inserted OMathMatrixColumn. |