Home > @i2analyze/notebook-sdk > dialog > IDialogConfig
dialog.IDialogConfig interface
A set of information for creating a dialog.
Signature:
interface IDialogConfig<TInitialize>
Introduced: version 1.4
Type Parameters
Parameter | Type | Description |
---|---|---|
TInitialize | any | The type of the data that's used for populating the dialog when it's displayed. |
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
actions | readonly |
(DialogActionId | IDialogAction)[] | Gets the action buttons that appear at the bottom of the dialog, below the content. |
initialValue? | readonly |
TInitialize | (Optional) Gets the data for populating the dialog when it's first displayed. |
name | readonly |
string | Gets the title of the dialog, which appears as a heading in the user interface. |
path | readonly |
string | Gets the path to the content to host in the dialog, relative to the plug-in entry point. |
size | readonly |
DialogSize | Gets the size of the dialog. |