FileDialogCustomPlace Constructors

Definition

Initializes a new instance of the FileDialogCustomPlace class.

Overloads

FileDialogCustomPlace(Guid)

Initializes a new instance of the FileDialogCustomPlace class with the specified known folder GUID.

FileDialogCustomPlace(String)

Initializes a new instance of the FileDialogCustomPlace class with the specified path.

FileDialogCustomPlace(Guid)

Initializes a new instance of the FileDialogCustomPlace class with the specified known folder GUID.

public:
 FileDialogCustomPlace(Guid knownFolder);
public FileDialogCustomPlace (Guid knownFolder);
new Microsoft.Win32.FileDialogCustomPlace : Guid -> Microsoft.Win32.FileDialogCustomPlace
Public Sub New (knownFolder As Guid)

Parameters

knownFolder
Guid

The GUID of a known folder.

Remarks

You can get GUIDs from the KnownFolders.h file included in the Windows SDK. Applications can also register new GUIDs.

Applies to

FileDialogCustomPlace(String)

Initializes a new instance of the FileDialogCustomPlace class with the specified path.

public:
 FileDialogCustomPlace(System::String ^ path);
public FileDialogCustomPlace (string path);
new Microsoft.Win32.FileDialogCustomPlace : string -> Microsoft.Win32.FileDialogCustomPlace
Public Sub New (path As String)

Parameters

path
String

The path for the folder.

Applies to