Skip to content

NET_SDK_IVE_RECT_T

Structure Definition

1
2
3
4
5
6
7
typedef struct
{
    unsigned int X1; 
    unsigned int Y1; 
    unsigned int X2; 
    unsigned int Y2; 
} NET_SDK_IVE_RECT_T;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_RECT_T
{
    public UInt32 X1;
    public UInt32 Y1;
    public UInt32 X2;
    public UInt32 Y2;
}

Function Description

The target rectangle.

Member Description

Member Type Remark
X1 unsigned int The x coordinate of the upper left corner.
Y1 unsigned int The y coordinate of the upper left corner.
X2 unsigned int The x-coordinate of the lower right corner.
Y2 unsigned int The y coordinate of the lower right corner.
Error Code