Skip to main content

AlertControl.FormMaxCount Property

Gets or sets the maximum number of simultaneously displayed alert windows.

Namespace: DevExpress.XtraBars.Alerter

Assembly: DevExpress.XtraBars.v25.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(0)]
[DXCategory("Behavior")]
public virtual int FormMaxCount { get; set; }

Property Value

Type Default Description
Int32 0

An integer value that specifies the maximum number of simultaneously displayed alert windows. 0 if this number is not limited.

Remarks

An AlertControl displays alert windows using a FIFO queue. Specify the FormMaxCount property to limit the number of simultaneously displayed alert windows. Additional windows are deferred (when an alert window is hidden, the next window in the queue is displayed).

To access the deferred alert windows, use AlertControl.PostponedFormList.

To access the deferred HTML popup alerts, use AlertControl.PostponedHtmlPopupList.

See Also