Syntax
C++
C#
Visual Basic .NET
Parameters
HorzScrollBarCode [in] Specifies a scroll-bar code that indicates the user’s scrolling request. This parameter can be one of the following:- SB_LEFT (6) — Scroll to far left.
- SB_ENDSCROLL (8) — End scroll.
- SB_LINELEFT (0) — Scroll left.
- SB_LINERIGHT (1) — Scroll right.
- SB_PAGELEFT (2) — Scroll one page left.
- SB_PAGERIGHT (3) — Scroll one page right.
- SB_RIGHT (7) — Scroll to far right.
- SB_THUMBPOSITION (4) — Scroll to absolute position. The current position is specified by the Position parameter.
- SB_THUMBTRACK (5) — Drag scroll box to specified position. The current position is specified by the Position parameter.
- SB_BOTTOM (7) — Scroll to bottom.
- SB_ENDSCROLL (8) — End scroll.
- SB_LINEDOWN (1) — Scroll one line down.
- SB_LINEUP (0) — Scroll one line up.
- SB_PAGEDOWN (3) — Scroll one page down.
- SB_PAGEUP (2) — Scroll one page up.
- SB_THUMBPOSITION (4) — Scroll to the absolute position. The current position is provided in Position parameter.
- SB_THUMBTRACK (5) — Drag scroll box to specified position. The current position is provided in Position parameter.
- SB_TOP (6) — Scroll to top.
