FileSavePicker.SuggestedSaveFile 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 storageFile that the file picker suggests to the user for saving a file.
public:
property StorageFile ^ SuggestedSaveFile { StorageFile ^ get(); void set(StorageFile ^ value); };
StorageFile SuggestedSaveFile();
void SuggestedSaveFile(StorageFile value);
public StorageFile SuggestedSaveFile { get; set; }
var storageFile = fileSavePicker.suggestedSaveFile;
fileSavePicker.suggestedSaveFile = storageFile;
Public Property SuggestedSaveFile As StorageFile
Property Value
The suggested storage file object to save.