ShowTitle

<< Click to Display Table of Contents >>

 

ShowTitle

Boolean If this property is set to True, E3Chart's main title is visible. Otherwise, it remains invisible. The Title property contains a title to display on an E3Chart. Example:

Sub CommandButton1_Click()
  Set E3Chart1 = Screen.Item("E3Chart1")
  oldTitle = E3Chart1.Title
  oldShowTitle = E3Chart1.ShowTitle
  E3Chart1.Title = "Test!"
  MsgBox "Display"
  E3Chart1.ShowTitle = True
  MsgBox "Hide"
  E3Chart1.ShowTitle = False
  MsgBox "Return"
  E3Chart1.Title = oldTitle
  E3Chart1.ShowTitle = oldShowTitle
End Sub

Was this page useful?