StandardFileDialog.Caption Property | |
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
public virtual Usual Caption { get; set; }
Request Example
View SourceProperty Value
Type:
UsualReturn 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:
1METHOD MyOpen() CLASS StandardShellWindow
2LOCAL oOpenDialog AS OpenDialog
3oOpenDialog:=OpenDialog{SELF}
4oOpenDialog:Caption:="My OpenFile Dialog"
5oOpenDialog:Show()
See Also