Class GalleryPopupEventArgs
Base class for GalleryPopupOpenEventArgs and GalleryPopupCloseEventArgs event args.
Inheritance
System.Object
GalleryPopupEventArgs
Inherited Members
Namespace: Syncfusion.Blazor.Ribbon
Assembly: Syncfusion.Blazor.dll
Syntax
public class GalleryPopupEventArgs : BaseEventArgs, ICancellableEvent
Remarks
This class provides common properties used during the opening and closing of a gallery popup in the ribbon component.
Constructors
GalleryPopupEventArgs()
Declaration
public GalleryPopupEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the gallery popup open or close action should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use this property within event handlers to control whether the gallery popup should proceed with its open or close operation.
This is typically set to true
to delay or prevent the action based on specific conditions or custom logic.