FileSavePicker.SuggestedSaveFile Property

Definition

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.

Applies to

See also