Spread 8.0 Documentation
Example
Support Options

Glossary Item Box

Example


The following example determines whether the vertical scrollbar is visible.

C++

// Check if the scrollbar is visible
if(m_Spread.IsVerticalScrollBarVisible()==False)
    MessageBox(NULL, s, "Not Visible", MB_OK);

Visual Basic

' Check if the scrollbar is visible
Dim ret as Boolean
ret = fpSpread1.IsVerticalScrollBarVisible
Debug.Print ret

Copyright © GrapeCity, inc. All rights reserved.