| VMMA References |
| |
| About |
| Sub About() |
| Shows about box. | |
| |
| Add |
| Sub Add([Index As Long = -1]) |
| Adds new row. Index is zero based. Appends new row is Index = -1. | |
| |
| Cell |
| Property Cell([Row As Long = -1], Col As Long) |
Read/write cell's value. Row=-1 refers to last accesed/added row. It is not valid after remove operation. | |
| |
| Clear |
| Sub Clear([Index As Long = -1]) |
| Removes all data from array. | |
| |
| Cols |
| Property Cols As Long |
Returns/sets number of columns. Number of columns can be changeg only if array is empty. | |
| |
| ColType |
| Property ColType(Col As Long) As eVarType |
| Returns/sets data type for the column. Data type can be changed only if array is empty. | |
| |
| Count |
| Property Count As Long |
| Returns/sets number of rows. | |
| |
| Load |
| Sub Load(FileName As String) |
| Loads data and structure from file. Data already in array is deleted. | |
| |
| Remove |
| Sub Remove([Index As Long = -1]) |
| Removes the row. Index is zero based. | |
| |
| Save |
| Sub Save(FileName As String) |
| Saves data and structure in the file. If file already exists it is overwriten. | |
| |