LineDown

Description

Occurs when the user clicks the down arrow of the vertical scroll bar.

Event ID

Event ID

Objects

pbm_sbnlinedown

VScrollBar, VTrackBar

Arguments

None

Returns

Long. Return code choices (specify in a RETURN statement):

Usage

When the user clicks in a vertical scroll bar, nothing happens unless you have scripts that change the scroll bar’s Position property. For the scroll bar arrows, use the LineUp and LineDown events; for clicks in the scroll bar background above and below the thumb, use the PageUp and PageDown event; for dragging the thumb itself, use the Moved event.

Examples

Example 1

This code in the LineDown event causes the thumb to move down when the user clicks on the down arrow of the vertical scroll bar and displays the resulting position in the StaticText control st_1:

IF This.Position > This.MaxPosition - 1 THEN

   This.Position = MaxPosition

ELSE

   This.Position = This.Position + 1

END IF


st_1.Text = "LineDown " + String(This.Position)

See also