8 instantiations of SCROLLINFO
System.Windows.Forms (8)
winforms\Managed\System\WinForms\Control.cs (1)
8830NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\Printing\PrintPreviewControl.cs (2)
365NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO(); 764NativeMethods.SCROLLINFO info = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\ScrollableControl.cs (1)
989NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\ScrollBar.cs (2)
793NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO(); 893NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\ScrollProperties.cs (1)
313NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\TreeView.cs (1)
2729NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO();
17 references to SCROLLINFO
System.Windows.Forms (17)
winforms\Managed\System\WinForms\Control.cs (2)
8830NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO(); 8831si.cbSize = Marshal.SizeOf(typeof(NativeMethods.SCROLLINFO));
winforms\Managed\System\WinForms\NativeMethods.cs (1)
3208public int cbSize = Marshal.SizeOf(typeof(SCROLLINFO));
winforms\Managed\System\WinForms\Printing\PrintPreviewControl.cs (3)
365NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO(); 366si.cbSize = Marshal.SizeOf(typeof(NativeMethods.SCROLLINFO)); 764NativeMethods.SCROLLINFO info = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\SafeNativeMethods.cs (1)
69public static extern bool GetScrollInfo(HandleRef hWnd, int fnBar, [In, Out] NativeMethods.SCROLLINFO si);
winforms\Managed\System\WinForms\ScrollableControl.cs (1)
989NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\ScrollBar.cs (3)
793NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO(); 794si.cbSize = Marshal.SizeOf(typeof(NativeMethods.SCROLLINFO)); 893NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO();
winforms\Managed\System\WinForms\ScrollProperties.cs (2)
313NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO(); 314si.cbSize = Marshal.SizeOf(typeof(NativeMethods.SCROLLINFO));
winforms\Managed\System\WinForms\TreeView.cs (2)
2729NativeMethods.SCROLLINFO si = new NativeMethods.SCROLLINFO(); 2730si.cbSize = Marshal.SizeOf(typeof(NativeMethods.SCROLLINFO));
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (2)
1347public static extern bool GetScrollInfo(HandleRef hWnd, int fnBar, NativeMethods.SCROLLINFO si); 1351public static extern int SetScrollInfo(HandleRef hWnd, int fnBar, NativeMethods.SCROLLINFO si, bool redraw);