EbsOpen Class Library for EBSILON®Professional

TimeSeries.Cell Property

[C#] In C#, this property is the indexer for the TimeSeries class.

[Visual Basic]
Public Default Property Cell( _ 
   ByVal Row As Integer, _ 
   ByVal Column As Integer _ 
) As Object
[C#]
public object this[
   int Row,
   int Column
] { get; set; }
[C++]
public: __property Object* get_Cell(
   int Row,
   int Column
);
public: __property void set_Cell(
   int Row,
   int Column,
   Object* newValue
);
[JScript]
returnValue = TimeSeriesObject.Item( RowColumn );
TimeSeriesObject.Item( RowColumn ) = newValue;
-or-
returnValue = TimeSeriesObject( RowColumn );
TimeSeriesObject( RowColumn ) = newValue;

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

See Also

TimeSeries Class | EbsOpen Namespace