[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.OMathStructCollection.InsertMatrix

InsertMatrix Method

InsertMatrix(InsertLocation)

Inserts a new OMathMatrix into the collection at the specified location.

Declaration
public OMathMatrix InsertMatrix(InsertLocation location)
Public Function InsertMatrix(location As InsertLocation) As OMathMatrix
Parameters
Type Name Description
InsertLocation location

The target InsertLocation for the insertion.

Returns
Type Description
OMathMatrix

The inserted OMathMatrix instance.

InsertMatrix(int, int, InsertLocation)

Inserts a new OMathMatrix into the collection at the specified location.

Declaration
public OMathMatrix InsertMatrix(int rows, int columns, InsertLocation location)
Public Function InsertMatrix(rows As Integer, columns As Integer, location As InsertLocation) As OMathMatrix
Parameters
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.

Returns
Type Description
OMathMatrix

The inserted OMathMatrix instance.

InsertMatrix(string[,], InsertLocation)

Inserts a new OMathMatrix into the collection at the specified location.

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

The structure cells text array.

InsertLocation location

The target InsertLocation for the insertion.

Returns
Type Description
OMathMatrix

The inserted OMathMatrix instance.

InsertMatrix(int?[,], InsertLocation)

Inserts a new OMathMatrix into the collection at the specified location.

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

The structure cells value array.

InsertLocation location

The target InsertLocation for the insertion.

Returns
Type Description
OMathMatrix

The inserted OMathMatrix instance.