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