[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( Row, Column ); TimeSeriesObject.Item( Row, Column ) = newValue; -or- returnValue = TimeSeriesObject( Row, Column ); TimeSeriesObject( Row, Column ) = 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.
TimeSeries Class | EbsOpen Namespace