get_verticalScrollWidth();
!MISSING Scrap '_RTJavaScript_PROPERTY_SYNTAX'!
Type | Description |
---|---|
int | The width of the vertical scrollbar. |
Only available if ScrollMode is set to ImageViewerScrollMode.Auto.
You can use this value to calculate the size of the client area of the control not covered by the visible scrollbars:
var width = viewer.get_controlSize.get_width() - viewer.get_horizontalScrollHeight(); var height = viewer.get_controlSize.get_height() - viewer.get_verticalScrollWidth();