Click or drag to resize

StandardFileDialog.Caption Property

X#
Return or update the title displayed in the dialog window.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL PROPERTY Caption AS USUAL GET SET 
Request Example View Source

Property Value

Type: Usual
Return or update the title displayed in the dialog window.
Examples
This example uses the Caption assign to set a title for an OpenFile dialog window:
X#
1METHOD MyOpen() CLASS StandardShellWindow
2LOCAL oOpenDialog AS OpenDialog
3oOpenDialog:=OpenDialog{SELF}
4oOpenDialog:Caption:="My OpenFile Dialog"
5oOpenDialog:Show()
See Also