Skip to main content

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​

Builder


🏷ī¸ definition​

Contains the current form definition as a IDefinition object.

Type​

IDefinition


🏷ī¸ name​

Contains the new name for the form.

Type​

string