DtoColumn Object
This object represents a table column.
Properties
Methods
None
Remarks
This object allows you to display properties of a specific table column.
Example
’ Instantiate and open dictionary
Dim dictionary as new DtoDictionary
Dim result as DtoResult
result = dictionary.Open("d:\MyDemodata")
 
’ Get STUDENT table from MyDemodata database
Dim students_table as DtoTable
Set students_table = dictionary.Tables("STUDENTS")
 
’ Get columns collection from STUDENT table
Dim students_cols as DtoColumns
Set students_cols = students_table.Columns
 
’ Retrieve first column and get its name
Dim first_col as DtoColumn
Set first_col = students_cols(1)
name = first_col.Name
See Also
DtoColumns Collection
DtoTable Object