TypeDescription.Based on types and qualifiers
Syntax:
Parameters:
<Types> (required)
The array of Type values containing types that are used in the object or a string containing type names separated by commas.
<NumberQualifiers> (optional)
Number qualifiers describing the permitted values of the number type. If this parameter is not specified, then numbers cannot be stored.
<StringQualifiers> (optional)
String qualifiers describing the permitted values of the string type. If this parameter is not specified, then the string has unlimited length.
<DateQualifiers> (optional)
Date qualifiers describing allowed values of the Date type. If the parameter is not specified, both date components (date and time) are used.
<BinaryDataQualifiers> (optional)
Binary data qualifiers.
Description:
Example:
| //Complex type created form a string and a reference to //the Nomenclature catalog TypesArray = New Array; TypesArray.Add(Type("CatalogRef.Nomenclature")); TypesArray.Add(Type("String")); StringParameters = New StringQualifiers(20); AllowableTypes = New TypeDescription(TypesArray, , StringParameters); |