Graphisoft®

Dialog ManagerVersion: 2.0

SystemDialog::SetTitle

Sets the caption text of the dialog.

void SetTitle (const char * title);

Parameters

title
Null terminated string.

Description

Use this method to set the caption text of the dialog. Can be used during the dialog is displayed or for initialization.

Example

DG::FileDialog dlg (DG::FileDialog::OpenMultiFile);
dlg.SetTitle ("Custom Open File");
dlg.SetOKButtonText ("Open!");
dlg.SetCancelButtonText ("Cancel!");
dlg.Invoke ();