FolderItemDialog.Title

From Xojo Documentation

Property (As String )


aFolderItemDialog.Title = newStringValue
or
StringValue = aFolderItemDialog.Title

Supported for all project types and targets.

The string that appears in the Title bar. This property is ignored on Macintosh.

Example

This example illustrates all the labelling properties of a FolderItemDialog.

Var dlg As OpenDialog
Var f As FolderItem
dlg = New OpenDialog
dlg.Title = "Choose a File"
f = dlg.ShowModal
If f <> Nil Then
MessageBox("You selected: " + f.NativePath)
Else
// User Cancelled
End If