COMRECT (Structures)
Last changed: anonymous

.
Summary
TODO - a short description

C# Definition:

[StructLayoutAttribute(LayoutKind.Sequential)]
public class COMRECT
{
    public int left;
    public int top;
    public int right;
    public int bottom;

    public COMRECT()
    {
    }

    public COMRECT(int left, int top, int right, int bottom)
    {
        this.left = left;
        this.top = top;
        this.right = right;
        this.bottom = bottom;
    }
}

VB Definition:

Structure COMRECT
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
COMRECT on MSDN