scrollbarLineInc

Typemessage
DictionaryLCS
LibraryLiveCode Script
Syntax
scrollbarLineInc <pNewPosition>
Associationsscrollbar
Summary

Sent to a scrollbar when the user clicks the increase arrow, scrolling forward one line.

Introduced1.0
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
pNewPosition

The new position of the scrollbar thumb.

Example
on scrollbarLineInc theCard -- use a scrollbar to navigate through cards
  go card theCard -- corresponding to the new postion
end scrollbarLineInc
RelatedKeyword: scrollbar, line
Property: lineIncrement, endValue, repeatRate, startValue, thumbPosition
Message: scrollbarDrag, scrollbarPageInc, mouseDown, scrollbarLineDec, scrollbarEnd
Glossary: handle, message
Description

Handle the scrollbarLineInc message if you want to respond to the use of the bottom or right scrollbar arrow.

Dragging the scrollbar thumb does not send a scrollbarLineInc message.

If the scrollbarLineInc message is not handled, a scrollbarDrag message is sent in addition.

Tagsui