Programming User Interaction > Customizing the Property Pages > To Display a Property Pages Tab Display State |
Use the IsChartEditorElementVisible method to determine if the tab is currently hidden or visible. The method returns True if the element is visible, and False otherwise. The following example gets the display state for the Font sub tab of the Axes tab, and shows the tab if it is currently hidden:
If Chart2d1.IsChartEditorVisible (oc2dceeAxesFont) = False then
Chart2d1.ShowChartEditorElement oc2dceeAxesFont, True
EndIf