[]
Represents a collection of OMathMatrixRow instances.
public class OMathMatrixRowCollection : ContentObjectCollection<OMathMatrixRow>, IContentList<OMathMatrixRow>, IReadOnlyList<OMathMatrixRow>, IReadOnlyCollection<OMathMatrixRow>, IEnumerable<OMathMatrixRow>, IEnumerable
Adds a new OMathMatrixRow to the collection at the End location.
public OMathMatrixRow Add()
The added OMathMatrixRow.
Adds a new OMathMatrixRow to the collection at the End location.
public OMathMatrixRow Add(int?[] cellsValue)
cellsValue int?[]The row cells value array.
The added OMathMatrixRow.
Adds a new OMathMatrixRow to the collection at the End location.
public OMathMatrixRow Add(string[] cellsText)
cellsText string[]The row cells text array.
The added OMathMatrixRow.
Inserts a new OMathMatrixRow into the collection at the specified location.
public OMathMatrixRow Insert(InsertLocation location)
location InsertLocationThe target InsertLocation for the insertion.
The inserted OMathMatrixRow.
Inserts a new OMathMatrixRow into the collection at the specified location.
public OMathMatrixRow Insert(int?[] cellsValue, InsertLocation location)
cellsValue int?[]The row cells value array.
location InsertLocationThe target InsertLocation for the insertion.
The inserted OMathMatrixRow.
Inserts a new OMathMatrixRow into the collection at the specified location.
public OMathMatrixRow Insert(string[] cellsText, InsertLocation location)
cellsText string[]The row cells text array.
location InsertLocationThe target InsertLocation for the insertion.
The inserted OMathMatrixRow.