Class GalleryPopupOpenEventArgs
Provides information about the PopupOpening event callback.
Inheritance
System.Object
GalleryPopupOpenEventArgs
Namespace: Syncfusion.Blazor.Ribbon
Assembly: Syncfusion.Blazor.dll
Syntax
public class GalleryPopupOpenEventArgs : Object
Remarks
Use this event to handle logic before a gallery popup is opened.
Constructors
GalleryPopupOpenEventArgs()
Declaration
public GalleryPopupOpenEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the gallery popup open 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 operation.
This is typically set to true
to delay or prevent the action based on specific conditions or custom logic.