Returns or sets a value indicating whether the name of the object is visible or hidden.
Object.NameVisible [ = bShow ]
The NameVisible property syntax has the following parts:
Name |
Type |
Description |
Object |
AAxis |
AAxis object |
bShow |
Bool |
A boolean expression that specifies whether the name of the axis is visible or hidden. |
bShow can be one of the following:
Value |
Description |
True * |
The axis name is visible. |
False |
The axis name is hidden. |
To hide an axis object at startup, set the Visible property to False at design time. Setting this property in code enables you to hide and later redisplay the axis object at run time in response to a particular event.
Note: Using the Show or Hide method on a form is the same as setting the form's Visible property in code to True or False, respectively.
The following statement changes the AAxis object's name so the user cannot see it:
axs1.NameVisible=False