[]
Inserts a new OMathMatrix into the collection at the specified location.
public OMathMatrix InsertMatrix(InsertLocation location)
| 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)
| 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)
| 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)
| 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. |