[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.OMath.AddMatrix

AddMatrix Method

AddMatrix()

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

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 zone.

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 zone.

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

The array of cell texts.

Returns
Type Description
OMathMatrix

The added OMathMatrix instance.

AddMatrix(int?[,])

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

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

The array of cell values.

Returns
Type Description
OMathMatrix

The added OMathMatrix instance.