Class DialogCloseEventArgs<TValue>
Provides information about the DialogClose event.
Inherited Members
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class DialogCloseEventArgs<TValue>
Type Parameters
| Name | Description |
|---|---|
| TValue | The type of data source for the Kanban board. |
Remarks
This class encapsulates details about dialog closure events in the Kanban interface.
Constructors
DialogCloseEventArgs()
Declaration
public DialogCloseEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the dialog close action can be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
Remarks
If set to true, the dialog box closure can be prevented.
Data
Gets or sets the data associated with the dialog close event.
Declaration
public TValue Data { get; set; }
Property Value
| Type | Description |
|---|---|
| TValue | An instance of |
Remarks
This property provides access to the specific data linked with the closing dialog operation.
Interaction
Gets or sets the interaction type that triggered the dialog close.
Declaration
public string Interaction { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the interaction type during dialog closure. |
Remarks
This property describes the nature of the interaction that initiated the dialog close.
RequestType
Gets or sets the action requested by the dialog.
Declaration
public CurrentAction RequestType { get; set; }
Property Value
| Type | Description |
|---|---|
| CurrentAction | An instance of CurrentAction representing the action type of the dialog request. |
Remarks
This property outlines the intended dialog action, such as edit or delete.