StandardMessageDialog
Extends StandardDialog
The StandardMessageDialog node is used to displays a message to the user. It is similar to the legacy Dialog node. It may contain the following items (from top to bottom):
- One or more blocks of text at the top.
- One bulleted / numbered list.
- One or more blocks of text at the bottom.
Structure
The StandardMessageDialog is comprised of the following areas and building block nodes:
- StdDlgTitleArea.
- StdDlgContentArea, which may contain the following items:
- Zero or more StdDlgTextItem nodes (the block(s) of text with the main message).
- Zero or more StdDlgBulletTextItem nodes (bulleted/numbered list).
- Zero or more StdDlgTextItem nodes (the block(s) of text with the bottom message).
- StdDlgButtonArea, which may contain zero or more StdDlgButton nodes.
Fields
| Field | Type | Default | Access Permission | Description |
|---|---|---|---|---|
| title | string | "" | READ_WRITE | The title to be displayed at the top of the dialog. |
| message | array of strings | [ ] | READ_WRITE | One or more blocks of informational text displayed at the top of the dialog's content area. Each string in the array is displayed as a separate block of text with the standard amount of space left between the blocks.
|
| bulletText | array of strings | [ ] | READ_WRITE | An array of strings displayed as a bulleted or numbered list. The list is displayed in the content area below the message and above the bottom message. |
| bulletType | string | "bullet" | READ_WRITE | If the bulletText field is set, specifies the type of list item delimiter, which may be one of the following:
|
| bottomMessage | array of strings | [ ] | READ_WRITE | One or more blocks of informational text displayed at the bottom of the dialog's content area. Each string in the array is displayed as a separate block of text with the standard amount of space left between the blocks.
|
| buttons | array of strings | [ ] | READ_WRITE | List of buttons to be displayed in the button area at the bottom of the dialog. Each string in the buttons array adds a new button to the button area.
|
Sample app
You can download and install a sample app that demonstrates how to create a standard message dialog.
Updated 3 months ago
