Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Sealed class: RT.KitchenSink.CsvTable

Summary

Holds a table of RVariant values, which can be saved to a file in CSV format.

Constructors

Creates a new instance of CsvTable.

Instance methods

void
Add(RVariant value)
Adds a value at the current location and advances the cursor.
void Advances the cursor down or to the right, depending on the value of CsvTable.AdvanceRight.
void
SaveToFile(string name)
Saves the table to a file in Excel-compatible CSV format.
void
SaveToFileXls(string name)
void
SetCursor(int row, int col)
Moves cursor to the specified position.

Instance properties

RVariant
this[int row, int col]
Gets/sets the value at the specified position. Returns a "blank" (stub) RVariant if the value hasn't been set yet.

Instance fields

bool Determines whether adding a cell moves the cursor to the right or down.
int"Selected" column index - affects some operations of the class.
int"Selected" row index - affects some operations of the class.