Table of Contents
VDatabase Class: Type Methods
VDatabase.Type(index)
Declaration:
Type( inIndex as Integer ) as VType
Parameters:
- inIndex - The index of a Type in a database, starts from 1.
Description:
Returns a Type by an numeric index.
Example:
tbl = db.Type( i )
VDatabase.Type(name)
Declaration:
Type( inName as String ) as VType
Parameters:
- inName - The Name of a Type.
Description:
Returns a Type by name.
Note: The parameter inName is case insensitive.
Example:
tbl = db.Type( "DayOfWeek" )