Desktop Functions: Smart Device Functions:
|
Search Results for "SetScrollPos" in [All]Constants1: EM_
SETSCROLLPOS = WM.USER + 222, coredll2: SetScrollPos
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); comctl323: DoReaderMode
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) user325: GetScrollPos
set { SetScrollPos((IntPtr) this.Handle, System.Windows.Forms.Orientation.Horizontal, value, true); }
set { SetScrollPos((IntPtr) this.Handle, System.Windows.Forms.Orientation.Vertical, value, true); } 7: SetScrollPos
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); } |