[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.OMathMatrixColumnCollection

Class OMathMatrixColumnCollection

Namespace
GrapeCity.Documents.Word
Assembly
GcDocs.Word.dll

Represents a collection of OMathMatrixColumn instances.

public class OMathMatrixColumnCollection : IReadOnlyList<OMathMatrixColumn>, IReadOnlyCollection<OMathMatrixColumn>, IEnumerable<OMathMatrixColumn>, IEnumerable
Inheritance
object
OMathMatrixColumnCollection
Implements
System.Collections.Generic.IReadOnlyList<T><OMathMatrixColumn>
System.Collections.Generic.IReadOnlyCollection<T><OMathMatrixColumn>
System.Collections.Generic.IEnumerable<T><OMathMatrixColumn>
System.Collections.IEnumerable
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Properties

Count

public int Count { get; }

Property Value

int

this[int]

public OMathMatrixColumn this[int index] { get; }

Parameters

index int

Property Value

OMathMatrixColumn

Methods

Add()

Adds a new OMathMatrixColumn to the collection.

public OMathMatrixColumn Add()

Returns

OMathMatrixColumn

The added OMathMatrixColumn.

Add(int?[])

Adds a new OMathMatrixColumn to the collection.

public OMathMatrixColumn Add(int?[] cellsValue)

Parameters

cellsValue int?[]

The column cells value array.

Returns

OMathMatrixColumn

The added OMathMatrixColumn.

Add(string[])

Adds a new OMathMatrixColumn to the collection.

public OMathMatrixColumn Add(string[] cellsText)

Parameters

cellsText string[]

The column cells text array.

Returns

OMathMatrixColumn

The added OMathMatrixColumn.

GetEnumerator()

public IEnumerator<OMathMatrixColumn> GetEnumerator()

Returns

System.Collections.Generic.IEnumerator<T><OMathMatrixColumn>

IndexOf(OMathMatrixColumn)

Searches for the specified OMathMatrixColumn and returns the zero-based index of the first occurrence within the entire collection.

public int IndexOf(OMathMatrixColumn item)

Parameters

item OMathMatrixColumn

The OMathMatrixColumn to locate in the collection.

Returns

int

The zero-based index of the first occurrence of column within the entire collection, if found; otherwise, -1.

Insert(int)

Inserts a new OMathMatrixColumn into the collection.

public OMathMatrixColumn Insert(int index)

Parameters

index int

The zero-based index at which column should be inserted.

Returns

OMathMatrixColumn

The inserted OMathMatrixColumn.

Insert(int?[], int)

Inserts a new OMathMatrixColumn into the collection.

public OMathMatrixColumn Insert(int?[] cellsValue, int index)

Parameters

cellsValue int?[]

The column cells value array.

index int

The zero-based index at which column should be inserted.

Returns

OMathMatrixColumn

The inserted OMathMatrixColumn.

Insert(string[], int)

Inserts a new OMathMatrixColumn into the collection.

public OMathMatrixColumn Insert(string[] cellsText, int index)

Parameters

cellsText string[]

The column cells text array.

index int

The zero-based index at which column should be inserted.

Returns

OMathMatrixColumn

The inserted OMathMatrixColumn.

Remove(OMathMatrixColumn)

Removes the specified OMathMatrixColumn from the collection.

public bool Remove(OMathMatrixColumn item)

Parameters

item OMathMatrixColumn

The OMathMatrixColumn instance to remove from the collection.

Returns

bool

true if the column is successfully removed; otherwise, false.

RemoveAt(int)

Removes the OMathMatrixColumn at the specified index in the collection.

public void RemoveAt(int index)

Parameters

index int

The zero-based index of the column to remove.