[]
Adds a new OMathMatrix to the end of the Office Math element.
public OMathMatrix AddMatrix()
Public Function AddMatrix() As OMathMatrix
Type | Description |
---|---|
OMathMatrix | The added OMathMatrix instance. |
Adds a new OMathMatrix to the end of the Office Math element.
public OMathMatrix AddMatrix(int rows, int columns)
Public Function AddMatrix(rows As Integer, columns As Integer) As OMathMatrix
Type | Name | Description |
---|---|---|
int | rows | Count of rows in the matrix. |
int | columns | Count of columns in the matrix. |
Type | Description |
---|---|
OMathMatrix | The added OMathMatrix instance. |
Adds a new OMathMatrix to the end of the Office Math element.
public OMathMatrix AddMatrix(string[,] cellsText)
Public Function AddMatrix(cellsText As String(,)) As OMathMatrix
Type | Name | Description |
---|---|---|
string[,] | cellsText | The structure cells text array. |
Type | Description |
---|---|
OMathMatrix | The added OMathMatrix instance. |
Adds a new OMathMatrix to the end of the Office Math element.
public OMathMatrix AddMatrix(int?[,] cellsValue)
Public Function AddMatrix(cellsValue As Integer?(,)) As OMathMatrix
Type | Name | Description |
---|---|---|
int?[,] | cellsValue | The structure cells value array. |
Type | Description |
---|---|
OMathMatrix | The added OMathMatrix instance. |