Class CloseEventArgs
Provides information about an Closed event being triggered.
Inheritance
System.Object
CloseEventArgs
Namespace: Syncfusion.Blazor.Popups
Assembly: Syncfusion.Blazor.dll
Syntax
public class CloseEventArgs : Object
Constructors
CloseEventArgs()
Declaration
public CloseEventArgs()
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 |
Container
Gets the container element of the dialog.
Declaration
public DOM Container { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Element
Gets the element of the dialog.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
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 Closed
event is invoked by user interaction or not.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
Name
Gets the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | System.String |