IReadOnlyTabularCollectionTValue, TCollectionItem(String, String) Property
Gets the elements of this instance corresponding to
the specified row and column indexes.
Namespace: Novacta.AnalyticsAssembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
TCollection this[
string rowIndexes,
string columnIndexes
] { get; }
ReadOnly Default Property Item (
rowIndexes As String,
columnIndexes As String
) As TCollection
Get
property TCollection default[String^ rowIndexes, String^ columnIndexes] {
TCollection get (String^ rowIndexes, String^ columnIndexes);
}
abstract Item : 'TCollection with get
- rowIndexes String
-
The zero-based row indexes of the elements to get.
The value must be ":", which means that all valid row indexes
are specified.
- columnIndexes String
-
The zero-based column indexes of the elements to get.
The value must be ":", which means that all valid column indexes
are specified.
TCollection
A tabular collection formed by the elements corresponding to the
specified row and column indexes.
ArgumentNullException | rowIndexes is null.
-or- columnIndexes is null.
|
ArgumentOutOfRangeException | rowIndexes is not a string reserved
for tabular collection sub-referencing.
-or- columnIndexes is not a string reserved
for tabular collection sub-referencing.
|