Search
Table.Scrollable Property
See Also
 



Gets or sets a value indicating whether users are allowed to scroll the table up / down.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_Scrollable ()
void put_Scrollable (
    bool value
)

 Property Value

A boolean value. Initialized with FlowChart.TablesScrollable.

 Remarks

Displays arrow buttons in the table caption area, which can be used to scroll the table rows. The current scroll position can be get or set by the CurrScrollRow property.

 See Also