跳转至

RECT_16

结构体定义

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;
}

功能描述

16位描述的矩形

成员说明

成员 类型 备注
left short 左上角X坐标。
top short 左上角Y坐标。
right short 右下角X坐标。
bottom short 右下角Y坐标。
错误码