[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.OMathElement.AddMatrix

AddMatrix Method

AddMatrix()

Adds a new OMathMatrix to the end of the Office Math element.

Declaration
public OMathMatrix AddMatrix()
Public Function AddMatrix() As OMathMatrix
Returns
Type Description
OMathMatrix

The added OMathMatrix instance.

AddMatrix(int, int)

Adds a new OMathMatrix to the end of the Office Math element.

Declaration
public OMathMatrix AddMatrix(int rows, int columns)
Public Function AddMatrix(rows As Integer, columns As Integer) As OMathMatrix
Parameters
Type Name Description
int rows

Count of rows in the matrix.

int columns

Count of columns in the matrix.

Returns
Type Description
OMathMatrix

The added OMathMatrix instance.

AddMatrix(string[,])

Adds a new OMathMatrix to the end of the Office Math element.

Declaration
public OMathMatrix AddMatrix(string[,] cellsText)
Public Function AddMatrix(cellsText As String(,)) As OMathMatrix
Parameters
Type Name Description
string[,] cellsText

The structure cells text array.

Returns
Type Description
OMathMatrix

The added OMathMatrix instance.

AddMatrix(int?[,])

Adds a new OMathMatrix to the end of the Office Math element.

Declaration
public OMathMatrix AddMatrix(int?[,] cellsValue)
Public Function AddMatrix(cellsValue As Integer?(,)) As OMathMatrix
Parameters
Type Name Description
int?[,] cellsValue

The structure cells value array.

Returns
Type Description
OMathMatrix

The added OMathMatrix instance.