Skip to content

DD_POSITION

Structure Definition

1
2
3
4
5
typedef struct _dd_position_
{
    unsigned short x; 
    unsigned short y; 
} DD_POSITION;
1
2
3
4
5
6
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_POSITION
{
    public UInt16 x;
    public UInt16 y;
}

Function Description

Location information structure.

Member Description

Member Type Remark
x unsigned short Horizontal axis.
y unsigned short Vertical axis.
Error Code