Search
Table.Visible Property
See Also
 



Gets or sets a value indicating whether this table is visible.

 Syntax

VB6  Copy Code

Public Property Get Visible() As Boolean
Public Property Let Visible( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_Visible ()
void put_Visible (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

A table can be made completely invisible by assigning false to this property. The ToolTip of an invisible table is not displayed.

 See Also