[]
Inserts a new OMathMatrix into the collection at the specified location.
public OMathMatrix InsertMatrix(InsertLocation location)
Public Function InsertMatrix(location As InsertLocation) As OMathMatrix
| Type | Name | Description |
|---|---|---|
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| OMathMatrix | The inserted OMathMatrix instance. |
Inserts a new OMathMatrix into the collection at the specified location.
public OMathMatrix InsertMatrix(int rows, int columns, InsertLocation location)
Public Function InsertMatrix(rows As Integer, columns As Integer, location As InsertLocation) As OMathMatrix
| Type | Name | Description |
|---|---|---|
| int | rows | Count of rows in the matrix. |
| int | columns | Count of columns in the matrix. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| OMathMatrix | The inserted OMathMatrix instance. |
Inserts a new OMathMatrix into the collection at the specified location.
public OMathMatrix InsertMatrix(string[,] cellsText, InsertLocation location)
Public Function InsertMatrix(cellsText As String(,), location As InsertLocation) As OMathMatrix
| Type | Name | Description |
|---|---|---|
| string[,] | cellsText | The structure cells text array. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| OMathMatrix | The inserted OMathMatrix instance. |
Inserts a new OMathMatrix into the collection at the specified location.
public OMathMatrix InsertMatrix(int?[,] cellsValue, InsertLocation location)
Public Function InsertMatrix(cellsValue As Integer?(,), location As InsertLocation) As OMathMatrix
| Type | Name | Description |
|---|---|---|
| int?[,] | cellsValue | The structure cells value array. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| OMathMatrix | The inserted OMathMatrix instance. |