TypeDescription.Based on the TypeDescription object
Syntax:
Parameters:
<SourceDescriptionOfTypes> (optional)
Source description of types that will serve as the basis for the new description.
<AddedTypes> (optional)
Array of Type values consisting of types that will be used in the object, or a string containing values of type names, separated by commas.
<RemovedTypes> (optional)
Array of Type type values (or a string containing values of type names, separated by commas) consisting of types that will be removed from the source description set as the first parameter.
<NumberQualifiers> (optional)
Number qualifiers describing the permitted values of the number type.
<StringQualifiers> (optional)
String qualifiers describing the permitted values of the string type.
<DateQualifiers> (optional)
Date qualifiers describing allowed values of the Date type.
<BinaryDataQualifiers> (optional)
Binary data qualifiers.
Description:
Example:
| // Let's expand the AllowableTypes definition by new //types Array = New Array; Array.Add(Type("CatalogRef.Methods")); Array.Add(Type("Number")); PlusMinus = AllowedSign.Nonnegative; NumberQualifier = New NumberQualifiers(10, 2, PlusMinus); AllowableTypes = New TypeDescription(AllowableTypes, Array, , NumberQualifier); |