Skip to content

POINT_16

Structure Definition

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

Function Description

16 bits describe a point.

Member Description

Member Type Remark
X short X coordinate.
Y short Y coordinate.
Error Code