INestedDefinition interface
đ Descriptionâ
Interface that contains a nested definition. This is the definition of a subform. It extends the IDefinition
interface with some additional properties.
See the Subforms guide for more information about nested forms (subforms).
đ Type declarationâ
interface INestedDefinition extends IDefinition { reference?: string;ReadonlyOptional version?: string;ReadonlyOptional alias?: boolean;ReadonlyOptional readonly?: boolean;ReadonlyOptional }
đī¸ Propertiesâ
đˇī¸ alias
â
Contains an alias for the subform.
Typeâ
string
đˇī¸ readonly
â
Specifies if the subform is read-only. In that case, the subform cannot be edited in the builder.
Typeâ
boolean
đˇī¸ reference
â
Specifies a reference for a subform. This property can be used to track the origin of a subform when it was loaded from an external source. For example, the identifier of a subform can be stored in this property.
Typeâ
string
đˇī¸ version
â
Specifies a version indicator for a subform. This property can be used to track the origin of a subform when it was loaded from an external source. For example, the version number of a subform can be stored in this property.
Typeâ
string