Click or drag to resize

StandardFileDialog.Caption Property (Typed)

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

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

Property Value

Type: String
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