GetScrollBarInfo

[DllImport("user32.dll", SetLastError = true)]
public static extern bool GetScrollBarInfo(
   IntPtr hwnd,
   uint idObject,
   ref SCROLLBARINFO psbi
);

Microsoft documentation: Link

Last updated