Description
This enumeration represents configuration settings for the OpenFileDialog class.
C#
public enum OpenFileDialogFlags { AllowAnyExtension = 4, AllowFoldersOnly = 0x800, AllowMultiple = 0x1000, DefaultIsFolder = 0x10, DoNotTransferRemoteFiles = 0x40, ForceDefaultFolder = 0x100, NoFtpSites = 0x200, NoShellExtensions = 0x400, NoUrls = 0x80, SearchPath = 8 }
Visual Basic
Public Enum OpenFileDialogFlags AllowAnyExtension = 4 AllowFoldersOnly = &H800 AllowMultiple = &H1000 DefaultIsFolder = &H10 DoNotTransferRemoteFiles = &H40 ForceDefaultFolder = &H100 NoFtpSites = &H200 NoShellExtensions = &H400 NoUrls = &H80 SearchPath = 8 End Enum
Members
Members | Description |
---|---|
AllowAnyExtension = 4 | Allows all file extensions. |
AllowFoldersOnly = 0x800 | Allow folders only. |
AllowMultiple = 0x1000 | Allows multiple file opening. |
DefaultIsFolder = 0x10 | Default folder. |
DoNotTransferRemoteFiles = 0x40 | Do not transfer remote files. |
ForceDefaultFolder = 0x100 | Force a default folder while opening. |
NoFtpSites = 0x200 | No ftp sites. |
NoShellExtensions = 0x400 | No shell extensions. |
NoUrls = 0x80 | No urls. |
SearchPath = 8 | Search path. |