Class OpenEventArgs
Provides arguments for the Opened event, which is triggered after the dialog has opened.
Inheritance
System.Object
OpenEventArgs
Namespace: Syncfusion.Blazor.Toolkit.Popups
Assembly: Syncfusion.Blazor.Toolkit.dll
Syntax
public class OpenEventArgs : Object
Remarks
This event is useful for executing code after the dialog is visible and fully rendered.
Constructors
OpenEventArgs()
Declaration
public OpenEventArgs()
Properties
Cancel
Gets or sets a value indicating whether a subsequent action should be canceled. This is not typically used in the Opened event.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | A |
Remarks
Since the dialog is already open, canceling has no effect on its visibility.
Name
Gets the name of the event.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The event name as a |
Remarks
Identifies the fired event.
PreventFocus
Gets or sets a value indicating whether to prevent the default behavior of focusing on the first focusable element.
Declaration
public bool PreventFocus { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | A |
Remarks
Set to true to handle focus manually after the dialog opens.