StandardFileDialog.Caption Property (Typed) | |
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
public virtual string Caption { get; set; }
Request Example
View SourceProperty Value
Type:
StringReturn 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