Gets and sets the title string value. | |
Syntax: | String =
object.Value object.Value = String |
Description: | CimTitle.Value is a string that
contains the display text. The value of this property defaults to Title, except in the axis' title, which defaults to Axis. Since this is a default property, you can omit it when you reference it. Examples The following CimView script excerpt changes the title's text: cimOleObj.Title.Value = "XY
Plot" Since this is a default property, the previous script can also be written ommitting the Value property: cimOleObj.Title = "XY Plot" |