public interface IReadOnlyTabularCollection<TValue, TCollection>
where TCollection : Object, IReadOnlyTabularCollection<TValue, TCollection>
Public Interface IReadOnlyTabularCollection(Of TValue, TCollection As {Object, IReadOnlyTabularCollection(Of TValue, TCollection)})
generic<typename TValue, typename TCollection>
where TCollection : Object, IReadOnlyTabularCollection<TValue, TCollection>
public interface class IReadOnlyTabularCollection
type IReadOnlyTabularCollection<'TValue, 'TCollection when 'TCollection : Object and IReadOnlyTabularCollection<'TValue, 'TCollection>> = interface end
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 be an instance whose type
implements the IReadOnlyTabularCollectionTValue, TCollection
interface, and consider its generic element
where and
are the number of rows and columns
of
, respectively.
Element can be get
through the
indexer
ItemInt32, Int32.
Further overloads of the indexer enable the access to tabular
sub-collections, as well.
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. |