_Application.FileDialog[MsoFileDialogType] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a FileDialog object representing an instance of the file dialog.
public:
property Microsoft::Office::Core::FileDialog ^ FileDialog[Microsoft::Office::Core::MsoFileDialogType] { Microsoft::Office::Core::FileDialog ^ get(Microsoft::Office::Core::MsoFileDialogType fileDialogType); };
public Microsoft.Office.Core.FileDialog FileDialog[Microsoft.Office.Core.MsoFileDialogType fileDialogType] { get; }
Public ReadOnly Property FileDialog(fileDialogType As MsoFileDialogType) As FileDialog
Parameters
- fileDialogType
- MsoFileDialogType
Required MsoFileDialogType. The type of file dialog.MsoFileDialogType can be one of these MsoFileDialogType constants:msoFileDialogFilePicker Allows user to select a file.msoFileDialogFolderPicker Allows user to select a folder.msoFileDialogOpen Allows user to open a file.msoFileDialogSaveAs Allows user to save a file.