FileDialogEventType Enumeration |
Defines a file dialog event type.
Namespace:
ShellBoost.Core
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public enum FileDialogEventType
Members
| Member name | Value | Description |
---|
| FileOk | 1 |
Called just before the dialog is about to return with a result.
Corresponds to IFileDialogEvents::OnFileOk event.
This will only be sent if the common dialog box state and/or results have been successfully validated.
|
| FolderChange | 3 |
Called when the user navigates to a new folder.
Corresponds to IFileDialogEvents::OnFolderChange event.
|
| FolderChanging | 2 |
Called before FolderChange. This allows the implementer to stop navigation to a particular location.
Corresponds to IFileDialogEvents::OnFolderChanging event.
|
| Overwrite | 7 |
Called from the save dialog when the user chooses to overwrite a file.
Corresponds to IFileDialogEvents::OnOverwrite event.
|
| SelectionChange | 4 |
Called when the user changes the selection in the dialog's view.
Corresponds to IFileDialogEvents::OnSelectionChange event.
|
| ShareViolation | 5 |
Enables an application to respond to sharing violations that arise from Open or Save operations.
Corresponds to IFileDialogEvents::OnShareViolation event.
|
| TypeChange | 6 |
Called when the dialog is opened to notify the application of the initial chosen filetype.
Corresponds to IFileDialogEvents::OnTypeChange event.
|
| OnButtonOk | 8 |
Called when the default button is pressed.
Only raised if Common Dialog hooks are enabled.
|
| OnButtonCancel | 9 |
Called when the cancel button is pressed.
Only raised if Common Dialog hooks are enabled.
|
| OnClosed | 10 |
Called when the native window is closed or destroyed.
Only raised if hooks are enabled.
|
| OnOpened | 11 |
Called when ShellBoost starts monitoring a native window.
Only raised if hooks are enabled.
Note that if any dialog box hooks are enabled, this event can be raised twice.
|
See Also