 | DataFrameItem(Object, String) Property |
Gets and sets the element specified by the given row key and column name.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic Object this[
Object rowKey,
string colName
] { get; set; }
Public Default Property Item (
rowKey As Object,
colName As String
) As Object
Get
Set
public:
property Object^ default[Object^ rowKey, String^ colName] {
Object^ get (Object^ rowKey, String^ colName);
void set (Object^ rowKey, String^ colName, Object^ value);
}
member Item : Object with get, set
Parameters
- rowKey Object
-
- colName String
-
Property Value
Object
ExceptionsException | Condition |
---|
InvalidArgumentException |
Thrown if the data frame does not contain a row with the given key, or a
column with the given name.
|
Remarks
Column names and row keys may not be unique, so this indexer accesses
and modifies the first matching element.
See Also