Class BeforeCloseEventArgs
Provides information about an OnClose event being triggered.
Inheritance
System.Object
BeforeCloseEventArgs
Namespace: Syncfusion.Blazor.Popups
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeCloseEventArgs : Object
Constructors
BeforeCloseEventArgs()
Declaration
public BeforeCloseEventArgs()
Properties
Cancel
Gets or sets whether the current action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
ClosedBy
Gets whether the dialog is closed by Close Icon
, Escape
or User Action
.
Declaration
public string ClosedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String | System.String |
Event
Gets the event arguments.
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs | System.EventArgs |
IsInteracted
Gets the information about whether the OnClose
event is invoked by user interaction or not.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |