TypeDescription.Types
Syntax:
Returned value:
The array of Type values consisting of the types used.
Description:
Availability:
Example:
| // Fill the list of documents types by indicated form item // Item - form item which has complex type DocumentTypeList = New ValueList; For each DocumentType In Item.ValueType.Types() Do DocumentRef = New(DocumentType); Name = DocumentRef.Metadata().Name; Synonym = DocumentRef.Metadata().Synonym; DocumentTypeList.Add(Name, Synonym); EndDo; |