[]
Represents a collection of OMathMatrixColumn instances.
public class OMathMatrixColumnCollection : IReadOnlyList<OMathMatrixColumn>, IReadOnlyCollection<OMathMatrixColumn>, IEnumerable<OMathMatrixColumn>, IEnumerable
public int Count { get; }
public OMathMatrixColumn this[int index] { get; }
index
intAdds a new OMathMatrixColumn to the collection.
public OMathMatrixColumn Add()
The added OMathMatrixColumn.
Adds a new OMathMatrixColumn to the collection.
public OMathMatrixColumn Add(int?[] cellsValue)
cellsValue
int?[]The column cells value array.
The added OMathMatrixColumn.
Adds a new OMathMatrixColumn to the collection.
public OMathMatrixColumn Add(string[] cellsText)
cellsText
string[]The column cells text array.
The added OMathMatrixColumn.
public IEnumerator<OMathMatrixColumn> GetEnumerator()
Searches for the specified OMathMatrixColumn and returns the zero-based index of the first occurrence within the entire collection.
public int IndexOf(OMathMatrixColumn item)
item
OMathMatrixColumnThe OMathMatrixColumn to locate in the collection.
The zero-based index of the first occurrence of column within the entire collection, if found; otherwise, -1.
Inserts a new OMathMatrixColumn into the collection.
public OMathMatrixColumn Insert(int index)
index
intThe zero-based index at which column should be inserted.
The inserted OMathMatrixColumn.
Inserts a new OMathMatrixColumn into the collection.
public OMathMatrixColumn Insert(int?[] cellsValue, int index)
cellsValue
int?[]The column cells value array.
index
intThe zero-based index at which column should be inserted.
The inserted OMathMatrixColumn.
Inserts a new OMathMatrixColumn into the collection.
public OMathMatrixColumn Insert(string[] cellsText, int index)
cellsText
string[]The column cells text array.
index
intThe zero-based index at which column should be inserted.
The inserted OMathMatrixColumn.
Removes the specified OMathMatrixColumn from the collection.
public bool Remove(OMathMatrixColumn item)
item
OMathMatrixColumnThe OMathMatrixColumn instance to remove from the collection.
true if the column is successfully removed; otherwise, false.
Removes the OMathMatrixColumn at the specified index in the collection.
public void RemoveAt(int index)
index
intThe zero-based index of the column to remove.