Row CLASS
Gets Account object for the row (if exist, otherwise null) SYNTAX public Account Account { get; }
Sat, May 5, 2018 at 7:32 PM
Get numbers of columns in panel. SYNTAX public int Columns { get; }
Sat, May 5, 2018 at 7:32 PM
Gets Instrument object for the row (if exist, otherwise null) SYNTAX public Instrument Instrument { get; }
Sat, May 5, 2018 at 7:34 PM
Returns column name SYNTAX public string GetColumnName (int columnIndex) PARAMETERS columnIndex — int zero-based index of the column RETU...
Sat, May 5, 2018 at 7:35 PM
Gets value from the specified column. SYNTAX public object GetValue (int columnIndex) PARAMETERS columnIndex — int Defines index of the requi...
Sat, May 5, 2018 at 7:36 PM
Gets value from the specified column. SYNTAX public object GetValue (string columnName) PARAMETERS columnName — string Defines name of the ...
Sat, May 5, 2018 at 7:38 PM
Gets formatted value from the specified column. SYNTAX public string GetValueFormatted (int columnIndex) PARAMETERS columnIndex — int Defines...
Sat, May 5, 2018 at 7:39 PM
Gets formatted value from the specified column. SYNTAX public string GetValueFormatted (string columnName) PARAMETERS columnName — string Def...
Sat, May 5, 2018 at 7:40 PM