Skip to content

RECT_16

Structure Definition

1
2
3
4
5
6
7
typedef struct
{
    short left;   
    short top;    
    short right;  
    short bottom; 
} RECT_16;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct RECT_16
{
    public Int16 left;
    public Int16 top;
    public Int16 right;
    public Int16 bottom;
}

Function Description

16-bit rectangle

Member Description

Member Type Remark
left short X coordinate of the upper left corner.
top short Y coordinate of the upper left corner.
right short The X coordinate of the lower right corner.
bottom short The Y coordinate of the lower right corner.
Error Code