FileDialog.CustomPlaces Property

Definition

Gets or sets the list of custom places for file dialog boxes.

public:
 property System::Collections::Generic::IList<Microsoft::Win32::FileDialogCustomPlace ^> ^ CustomPlaces { System::Collections::Generic::IList<Microsoft::Win32::FileDialogCustomPlace ^> ^ get(); void set(System::Collections::Generic::IList<Microsoft::Win32::FileDialogCustomPlace ^> ^ value); };
public System.Collections.Generic.IList<Microsoft.Win32.FileDialogCustomPlace> CustomPlaces { get; set; }
member this.CustomPlaces : System.Collections.Generic.IList<Microsoft.Win32.FileDialogCustomPlace> with get, set
Public Property CustomPlaces As IList(Of FileDialogCustomPlace)

Property Value

The list of custom places.

Remarks

Open and save file dialog boxes have a Favorite Links panel on the left side of the dialog box that allows users to quickly navigate to a different location. These links are called custom places. This property allows you to modify the list that appears when your application uses a file dialog box.

Applies to