FileSavePicker.SuggestedStartLocation 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.
Gets or sets the location that the file save picker suggests to the user as the location to save a file.
public:
property PickerLocationId SuggestedStartLocation { PickerLocationId get(); void set(PickerLocationId value); };
PickerLocationId SuggestedStartLocation();
void SuggestedStartLocation(PickerLocationId value);
public PickerLocationId SuggestedStartLocation { get; set; }
var pickerLocationId = fileSavePicker.suggestedStartLocation;
fileSavePicker.suggestedStartLocation = pickerLocationId;
Public Property SuggestedStartLocation As PickerLocationId
Property Value
The initial suggested location for saving a file.
Remarks
The SuggestedStartLocation is not always used as the start location for the file picker. To give the user a sense of consistency, the file picker remembers the last location that the user navigated to and will generally start at that location.