- bool ConfirmationDialog(String title) Shows a confirmation dialog with the specified title and returns true if the user confirms.Parameters
Name Description title The title of the dialog - string InputDialog(String title, String defaultText) Shows an input dialog where the user can enter text.Parameters
Name Description title The title of the dialog defaultText The default text - string OpenFile(String title, String filter, String defaultExt) Opens a file dialog and returns the selected file path.Parameters
Name Description title The title of the dialog filter File extension filter defaultExt Default extension - string SelectFile(String filter, String defaultExt) Selects a file using a save file dialog and returns the selected file path.Parameters
Name Description filter File extension filter defaultExt Default extension - IEnumerable<string> SelectFilesFromDialog() Selects files from a dialog and returns the selected file paths.
- string SelectFolder(String title) Selects a folder using a folder selection dialog.Parameters
Name Description title The title of the dialog - int SelectIndexFromList(IEnumerable<String> contents, Int32 selectedIndex) Selects an item from a list of strings using a combo box dialog and return the index of the selected item.Parameters
Name Description contents The available contents selectedIndex The default selected index - string SelectItemFromList(IEnumerable<String> contents, Int32 selectedIndex) Selects an item from a list of strings using a combo box dialog.Parameters
Name Description contents The available contents selectedIndex The default selected index - void ShowMessage(String message) Shows a message box with the specified message.Parameters
Name Description message The message to show
Scripting - Dialogs Print
Created by: Mikael Stalvik
Modified on: Tue, 19 Aug, 2025 at 4:30 PM
Did you find it helpful? Yes No
Send feedbackSorry we couldn't be helpful. Help us improve this article with your feedback.