跳转至

POINT_16

结构体定义

1
2
3
4
5
typedef struct
{
    short X; 
    short Y; 
} POINT_16;
1
2
3
4
5
6
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct POINT_16
{
    public Int16 X;
    public Int16 Y;
}

功能描述

16位描述的点。

成员说明

成员 类型 备注
X short X坐标。
Y short Y坐标。
错误码