Class BeforeCloseEventArgs
Provides data for the BeforeClose event.
Inheritance
System.Object
BeforeCloseEventArgs
Namespace: Syncfusion.Blazor.Popups
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeCloseEventArgs : Object
Constructors
BeforeCloseEventArgs()
Declaration
public BeforeCloseEventArgs()
Properties
Cancel
Defines whether the current action can be prevented.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ClosedBy
Determines whether the dialog is closed by "Close Icon", "Escape", "User Action"
Declaration
public string ClosedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Container
Declaration
public DOM Container { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Element
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Event
Returns the original event arguments when triggering the event.
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs |
IsInteracted
Determines whether the event is triggered by interaction.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |