AlertInfo(String, String, String, Image, Object, Boolean) Constructor
Initializes a new instance of the AlertInfo class with the specified settings.
Namespace: DevExpress.XtraBars.Alerter
Assembly: DevExpress.XtraEditors.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
public AlertInfo(
string caption,
string text,
string hotTrackedText,
Image image,
object tag,
bool autoCloseFormOnClick
)
Parameters
Name | Type | Description |
---|---|---|
caption | String | A String value that is the alert window caption. |
text | String | A String value that is the alert window text. |
hotTrackedText | String | A String value that is the alert window text, displayed only when hovered (see the AlertInfo.HotTrackedText property). |
image | Image | An Image that is the alert window icon. |
tag | Object | An object that is the unique ID associated with this AlertInfo. |
autoCloseFormOnClick | Boolean | true if the alert window should be closed on click; otherwise, false. |
See Also