Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "SetScrollPos" in [All]

Constants

1: EM_
.
EM_SETSCROLLPOS WM_USER + 222 TODO
.

    SETSCROLLPOS = WM.USER + 222,

coredll

.

    static extern int SetScrollPos(IntPtr hWnd, int nBar, int nPos, bool bRedraw);

.

Declare Function SetScrollPos Lib "coredll.dll" (TODO) As TODO

.

    static extern int SetScrollPos(IntPtr hWnd, int nBar, int nPos, bool bRedraw);

.

        SetScrollPos(Handle, 1, Row, true);

.
Documentation
[SetScrollPos] on MSDN

comctl32

.

    Private Shared Function SetScrollPos(ByVal hWnd As IntPtr, ByVal nBar As Integer, ByVal nPos As Integer, ByVal bRedraw As Boolean) As Integer

.

        SetScrollPos(Me.Handle, SB_HORZ, value, True)

.

        SetScrollPos(Me.Handle, SB_VERT, value, True)

user32

.
SeeAlso
.

     set { SetScrollPos((IntPtr) this.Handle, System.Windows.Forms.Orientation.Horizontal, value, true); }

.

     set { SetScrollPos((IntPtr) this.Handle, System.Windows.Forms.Orientation.Vertical, value, true); }

.
SeeAlso
.
SeeAlso
.
Summary
.

public static extern int SetScrollPos(IntPtr hWnd, System.Windows.Forms.Orientation nBar, int nPos, bool bRedraw);

.

Public Shared Function SetScrollPos(ByVal hWnd As IntPtr, _

.

     set { SetScrollPos((IntPtr) this.Handle, System.Windows.Forms.Orientation.Horizontal, value, true); }

.

     set { SetScrollPos((IntPtr) this.Handle, System.Windows.Forms.Orientation.Vertical, value, true); }

.
Documentation
[SetScrollPos] on MSDN

 
Access PInvoke.net directly from VS: