DrawEdge

[DllImport("user32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)]
public static extern bool DrawEdge(
   IntPtr hdc,
   ref RECT qrc,
   uint edge,
   uint grfFlags
);

Microsoft documentation: Link

Last updated