Table of Contents
VTable Class: Link Methods
VTable.Link(index)
Declaration:
Link( inIndex as Integer ) as VLink
Parameters:
- inIndex - The index of a Link in a database, starts from 1.
Description:
Returns a Link by a numeric index.
Example:
link = tbl.Link( i )
VTable.Link(name)
Declaration:
Link( inName as String ) as VLink
Parameters:
- inName - The Name of a Link.
Description:
Returns a Link by name.
Note: The parameter inName is case insensitive.
Example:
link = tbl.Link( "linkPersonPhone" )