Click or drag to resize

FileDialogEventArgs Class

Provides data for the FileDialog event of the ShellFolder type.
Inheritance Hierarchy

Namespace:  callback.ShellBoost.Core
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public class FileDialogEventArgs : EventArgs

The FileDialogEventArgs type exposes the following members.

Properties
  NameDescription
Public propertyCurrentSelectionIdList
Gets the user's current selection in the dialog.
Public propertyFileName
Gets the text currently entered in the dialog's File name edit box. The text in the File name edit box does not necessarily reflect the item the user chose. To get the item the user chose, use the ResultsIdLists or ResultsIdList properties.
Public propertyFileTypeIndex
Gets the currently selected file type. This is only valid for Common Dialog boxes.
Public propertyFolder
Gets the opened Shell Folder instance.
Public propertyFolderIdList
Gets the folder id list.
Public propertyHResult
Gets or sets the operation HResult.
Public propertyHwnd
Gets the dialog box window handle.
Public propertyIsCommonDialog
Gets a value indicating whether this instance represents an event from a Common Dialog box or a custom Dialog box.
Public propertyIsFileSave
The context is a File Save dialog. This is only valid for Common Dialog boxes.
Public propertyIsFolderPicker
The context is a Folder Picker dialog. This is only valid for Common Dialog boxes.
Public propertyItemIdList
Gets the currently selected item in the dialog. This item may be an item selected in the view, or text selected in the file name edit box.
Public propertyItemsIdLists
Gets the currently selected items in the dialog. These items may be items selected in the view, or text selected in the file name edit box.
Public propertyLParam
Gets the LParam parameter corresponding to a dialog hook window WM_COMMAND event in the case of a hooked dialog box. May be 0, otherwise it represents the Handle to the related control window.
Public propertyOptions
Gets the current flags that are set to control dialog behavior. This is only valid for Common Dialog boxes.
Public propertyResultIdList
Gets the choice that the user made in the dialog.
Public propertyResultsIdLists
Gets the user's choices in a dialog that allows multiple selection.
Public propertyType
Gets the type of FileDialog event. The value may not correspond to one of the FileDialogEventType values, but instead may correspond to the raw WParam value of the dialog box hook WM_COMMAND event in the case of a hooked dialog box.
Public propertyViewFlags
Gets the view flags. This is only valid for Common Dialog boxes.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also