IReadOnlyTabularCollectionTValue, TCollection Interface

Defines methods to manipulate read-only collections whose elements are arranged in rows and columns.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public interface IReadOnlyTabularCollection<TValue, TCollection>
where TCollection : Object, IReadOnlyTabularCollection<TValue, TCollection>

Type Parameters

TValue
The type of the values arranged in tabular form.
TCollection
The type used to assign or refer to multiple positions in the tabular collection.

Remarks

Dimensions

The dimensions of a IReadOnlyTabularCollectionTValue, TCollection can be inspected using the properties NumberOfRows and NumberOfColumns.

Indexing

In a tabular collection, elements are arranged in rows and columns. Zero-based indexes are assigned to rows and columns, so that each element can be identified by the indexes of the specific row and column on which it lies.

Let LaTeX equation be an instance whose type implements the IReadOnlyTabularCollectionTValue, TCollection interface, and consider its generic element

LaTeX equation

where LaTeX equation and LaTeX equation are the number of rows and columns of LaTeX equation, respectively.

Element LaTeX equation can be get through the indexer ItemInt32, Int32. Further overloads of the indexer enable the access to tabular sub-collections, as well.

Properties

ItemIndexCollection, IndexCollection Gets the elements of this instance corresponding to the specified row and column indexes.
ItemIndexCollection, Int32 Gets the elements of this instance corresponding to the specified row and column indexes.
ItemIndexCollection, String Gets the elements of this instance corresponding to the specified row and column indexes.
ItemInt32, IndexCollection Gets the elements of this instance corresponding to the specified row and column indexes.
ItemInt32, Int32 Gets the element of this instance corresponding to the specified row and column indexes.
ItemInt32, String Gets the elements of this instance corresponding to the specified row and column indexes.
ItemString, IndexCollection Gets the elements of this instance corresponding to the specified row and column indexes.
ItemString, Int32 Gets the elements of this instance corresponding to the specified row and column indexes.
ItemString, String Gets the elements of this instance corresponding to the specified row and column indexes.
NumberOfColumns Gets the number of columns of this instance.
NumberOfRows Gets the number of rows of this instance.

See Also