IBuilderRenameEvent interface
đ Descriptionâ
Event interface for the OnRename
hook, fired when the form is renamed.
đ Type declarationâ
interface IBuilderRenameEvent { builder: Builder;Readonly definition: IDefinition;Readonly name: string;Readonly }
đąī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.
đī¸ Propertiesâ
đˇī¸ builder
â
Contains a reference to the Builder
instance that generated the event.
Typeâ
đˇī¸ definition
â
Contains the current form definition as a IDefinition
object.
Typeâ
đˇī¸ name
â
Contains the new name for the form.
Typeâ
string