

| Type | Description | |||
| Freeze as Boolean | A Boolean expression indicating whether the control's events are frozen or active |
Purpose:
Use Case:
Example Scenario:
control.FreezeEvents(True) // Stop event processing .... control.FreezeEvents(False) // Resume event processing
If events aren’t temporarily disabled, the control may trigger its event handlers each time an update occurs, which can be time-consuming or unnecessary. Freezing events prevents this, keeping the control "quiet" during the update process.
Benefits: