FileSavePickerUI.Title 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 a title to display in the file picker UI that identifies the location that the file picker is displaying to the user.
public:
property Platform::String ^ Title { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Title();
void Title(winrt::hstring value);
public string Title { get; set; }
var string = fileSavePickerUI.title;
fileSavePickerUI.title = string;
Public Property Title As String
Property Value
The title to display in the file picker UI. This title should identify the location and type of files that the user can see on the app page (which is hosted by the file picker) of the app that is providing files.
Remarks
As a provider of files, you should consider updating the title if the user navigates to another location or if the AllowedFileTypes change.