ActiveData is the class that provides functionality for using an ActiveData object in a script. This class is an internal constructor. To call ActiveData, call Workbench.LoadActiveData instead of using this class.
ActiveData does not derive from any class, and no classes derive from it.
'Declaration Public Class ActiveData
Name | Description |
---|---|
ColumnCount | The number of columns in the underlying ActiveData object. |
Count | The number of columns in an ActiveData row. |
Name | Description |
---|---|
AddColumn | Adds a column to the underlying ActiveData object. |
AddRow | Adds a row to the underlying ActiveData object. |
Dispose | Cleans up the resources used by the object. |
GetEnumerator | Returns an enumerator for the rows. |
Item | Returns an ActiveDataRow by index. |
RemoveColumn | Removes a column from the underlying ActiveData object. |
RemoveRow | Removes a row from the underlying ActiveData object. |
RenameColumn | Renames a column in the ActiveData object. |
Reset | Moves the focus to the first row of the ActiveData file. |
Save | Saves the ActiveData object. |