Allows users to implement their own common Dialogs, consisting of FileOpenDialog, FileSaveDialog, and SelectDirectoryDialog.
More...
|
List< string > | FileOpenDialog (string title, string message, string initialPath, string extensions, bool allowMultiSelect, bool checkFileExists) |
| Invoked when a FileOpenDialog occurs in OTX-Runtime. More...
|
|
string | FileSaveDialog (string title, string message, string initialPath, string extensions, bool checkFileExist) |
| Invoked when an FileSaveDialog occurs in OTX-Runtime. More...
|
|
string | SelectDirectoryDialog (string title, string message, string initialPath) |
| Invoked when a SelectDirectoryDialog occurs in OTX-Runtime. More...
|
|
Allows users to implement their own common Dialogs, consisting of FileOpenDialog, FileSaveDialog, and SelectDirectoryDialog.
◆ FileOpenDialog()
List<string> OpenTestSystem.Otx.Runtime.Api.Custom.ICommonDialogsImplementation.FileOpenDialog |
( |
string |
title, |
|
|
string |
message, |
|
|
string |
initialPath, |
|
|
string |
extensions, |
|
|
bool |
allowMultiSelect, |
|
|
bool |
checkFileExists |
|
) |
| |
Invoked when a FileOpenDialog occurs in OTX-Runtime.
- Parameters
-
title | The title to be displayed in the dialog |
message | The message to be displayed in the dialog to aid the user in their selection |
initialPath | The initial path to select |
extensions | The optional (comma separated) list of extensions to filter in this dialog |
allowMultiSelect | The optional flag to determine if the dialog will allow the user to select more than one file |
checkFileExists | The optional flag to determine if the dialog must check for the file before allowing the user to complete |
- Returns
- Selection from the user will be sent to OTX-Runtime.
◆ FileSaveDialog()
string OpenTestSystem.Otx.Runtime.Api.Custom.ICommonDialogsImplementation.FileSaveDialog |
( |
string |
title, |
|
|
string |
message, |
|
|
string |
initialPath, |
|
|
string |
extensions, |
|
|
bool |
checkFileExist |
|
) |
| |
Invoked when an FileSaveDialog occurs in OTX-Runtime.
- Parameters
-
title | The title to be displayed in the dialog |
message | The message to be displayed in the dialog to aid the user in their selection |
initialPath | The initial path to select |
extensions | The optional (comma separated) list of extensions to filter in this dialog |
checkFileExist | The optional flag to determine if the dialog must check for the file before allowing the user to complete |
- Returns
- Returned value will be sent to OTX-Runtime.
◆ SelectDirectoryDialog()
string OpenTestSystem.Otx.Runtime.Api.Custom.ICommonDialogsImplementation.SelectDirectoryDialog |
( |
string |
title, |
|
|
string |
message, |
|
|
string |
initialPath |
|
) |
| |
Invoked when a SelectDirectoryDialog occurs in OTX-Runtime.
- Parameters
-
title | The title to be displayed in the dialog |
message | The message to be displayed in the dialog to aid the user in their selection |
initialPath | The initial path to select |
- Returns
- Selection from the user will be sent to OTX-Runtime.
The documentation for this interface was generated from the following file:
- ICommonDialogsImplementation.cs