Enables or disables automatically showing the scroll bars if the image width or height exceeds the control client area.
Syntax
Visual Basic (Declaration) | |
---|
Public Property ScrollBarVisible As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebImageViewer
Dim value As Boolean
instance.ScrollBarVisible = value
value = instance.ScrollBarVisible
|
C# | |
---|
public bool ScrollBarVisible {get; set;} |
Managed Extensions for C++ | |
---|
public: __property bool get_ScrollBarVisible();
public: __property void set_ScrollBarVisible(
bool value
); |
C++/CLI | |
---|
public:
property bool ScrollBarVisible {
bool get();
void set (bool value);
} |
Return Value
true, automatically show the scroll bars; false, hide the scroll bars.
Example
Refer to ScrollBarVisible
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also