ReadOnlyComplexMatrixItem(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
public ComplexMatrix this[
string rowIndexes,
string columnIndexes
] { get; }
Public ReadOnly Default Property Item (
rowIndexes As String,
columnIndexes As String
) As ComplexMatrix
Get
public:
virtual property ComplexMatrix^ default[String^ rowIndexes, String^ columnIndexes] {
ComplexMatrix^ get (String^ rowIndexes, String^ columnIndexes) sealed;
}
abstract Item : ComplexMatrix with get
override Item : ComplexMatrix 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.
ComplexMatrix
A tabular collection formed by the elements corresponding to the
specified row and column indexes.
IReadOnlyTabularCollectionTValue, TCollectionItemString, String 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.
|