Skip to content

NET_SDK_IMAGE_EFFECT_T

Structure Definition

1
2
3
4
5
6
7
typedef struct
{
    unsigned int minValue;     
    unsigned int maxValue;     
    unsigned int curValue;     
    unsigned int defaultValue; 
} NET_SDK_IMAGE_EFFECT_T;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IMAGE_EFFECT_T
{
    public UInt32 minValue;
    public UInt32 maxValue;
    public UInt32 curValue;
    public UInt32 defaultValue;
}

Function Description

Image display parameters.

Member Description

Member Type Remark
minValue unsigned int Minimum value.
maxValue unsigned int Maximum value.
curValue unsigned int Current value.
defaultValue unsigned int Default value.
Error Code