Class OverflowPopupEventArgs
Provides information about OverflowPopupOpening and OverflowPopupClosing event callback.
Inheritance
System.Object
OverflowPopupEventArgs
Namespace: Syncfusion.Blazor.Ribbon
Assembly: Syncfusion.Blazor.dll
Syntax
public class OverflowPopupEventArgs : Object
Remarks
This event occurs before the overflow popup opens/closes in the SfRibbon component. Applicable for both group overflow and overall overflow popups.
Constructors
OverflowPopupEventArgs()
Declaration
public OverflowPopupEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the overflow popup open or close action.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use this property to prevent the overflow popup from opening or closing in response to a user action.
Setting this to true
in an event handler will stop the default behavior of the popup.
This allows for custom logic to determine when the popup should or should not be displayed.