scrollbars Method

Purpose:

Tells a Edit or Listview control which scrollbars to view.

Syntax:

.scrollbars = value

Comments:

value must be between 0 and 3

scrollbars = 0 // No scrollbars
scrollbars = 1 // Vertical scrollbar
scrollbars = 2  // Horizontal scrollbar
scrollbars = 3 // Both scrollbars

 

Scroll bars are usefull in heavily populated listviews.  It may be easier to click the scrollbar than to use finger gestures to flip the screen up and down.

If you don't want them, setting to scrollbars to 0 will disable and hide them.

Example:

lis.scrollbars = 1