Search
FlowChart.DisableNoScroll Property
See Also
 



Gets or sets a value indicating whether if scroll bars are unnecessary, they will be disabled of hidden.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_DisableNoScroll ()
void put_DisableNoScroll (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

If this property is set to true, scrollbars are disabled when not needed, otherwise they are hidden. For DisableNoScroll to has effect, its value must be set before calling the ShowScrollers or SetDocSize method.

 See Also