pixelVertScrollIncrement

Type: Integer

Availability: Read or write at any time

The pixelVertScrollIncrement property of the JadeTableSheet class specifies the number of pixels that are scrolled vertically when the scrolling mode of the sheet is pixels (that is, the value of the JadeTableSheet class scrollMode property is ScrollMode_VertPixel_VertCell or ScrollMode_Both_Pixel (3).

The default value is 1, and the value can be in the range 1 through 32767. Values outside of this range are treated as 1.

The pixelVertScrollIncrement property enables the amount of vertical scrolling to be increased. For example, by setting the vertical pixel increment to the height of the displayed text in the table, the scrolling would scroll a line at a time.

The increment value is used only when the user clicks on a vertical scroll bar arrow or scrolls using the mouse wheel and the scrolling mode is pixels for that scroll bar.

When scrolling with the mouse wheel, the scrolling amount is multiplied by an increment set by the user.(This increment is usually 3.)

The pixelVertScrollIncrement value is ignored unless the value of the scrollMode property of the sheet is ScrollMode_Both_Pixel or ScrollMode_VertPixel_HorzCell.

The code fragment in the following example shows the use of the pixelVertScrollIncrement property.

table1.accessSheet(1).pixelVertScrollIncrement := 14;

2018.0.01 and higher