TdxAlertWindow.Pinned Property
Determines whether or not the current alert window is pinned.
Declaration
property Pinned: Boolean read; write; default False;
Property Value
Type | Default |
---|---|
Boolean | False |
Remarks
A pinned window is not automatically closed since its internal display timer set via the OptionsBehavior.DisplayTime property is disabled. The window stays visible on screen until one of the following occurs:
You programmatically close it via the Hide or Close method call;
An end-user closes it either by clicking the Close caption button or by right-clicking the window if the OptionsBehavior.CloseOnRightClick property is set to True.
To pin an alert window, set its Pinned property to True. End-users can switch the pinned state by clicking the Pin caption button. Once an alert window is unpinned, its internal display timer is enabled and set for the OptionsBehavior.DisplayTime period.
The default value of the Pinned property is False.