Click or drag to resize

DataFrameItem(Object, String) Property

Gets and sets the element specified by the given row key and column name.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public Object this[
	Object rowKey,
	string colName
] { get; set; }

Parameters

rowKey  Object
 
colName  String
 

Property Value

Object
Exceptions
ExceptionCondition
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