Siebel VB Language Reference > VB Language Overview > VB Data Types >

Records


A record, or record variable, is a data structure containing one or more elements, each of which has a value. Before declaring a record variable, a Type must be defined. When the Type is defined, the variable can be declared to be of that type. The variable name should not have a type character suffix. Record elements are referenced using dot notation, for example,

record.element

where record is the previously defined record name and element is a member of that record. Records can contain elements that are themselves records.

Siebel VB Language Reference