CimGraphControl.Title (property)

Gets and sets the control's title or heading.
Syntax: Set CimTitle = object.Title
object.Title = CimTitle
Description: CimGraphControl.Title gives you access to the control's title object. The control's title object is the textual heading that is centered accross the top of the control.

The value of this property defaults to a visible title with value of Title with an ambient font.

Examples

The following CimView script excerpt changes the title's text:
cimOleObj.Title.Value = "XY Plot"

This script excerpt also changes the title's text. Since CimTitle.Value is a default property it can be omitted:
cimOleObj.Title = "XY Plot"