导航:  GdiPlus Classes > Structures >

EncoderParameters

上一页返回章节概述下一页

An EncoderParameters structure is an array of EncoderParameter structures along with a data member that specifies the number of EncoderParameter structures in the array.

 

C++ Syntax

 

typedef struct EncoderParameters {

UINT Count;

EncoderParameter Parameter[i];

};

 

FreeBASIC 语法

 

TYPE EncoderParameters

Count AS UINT

Parameter(0 TO 1-1) AS EncoderParameter

END TYPE

 

成员

 

Count

 

Number of EncoderParameter structures in the array.

 

Parameter ()

 

Array of EncoderParameter structures.

 

备注

 

When you create an EncoderParameters structure, you must allocate enough memory to hold all of the EncoderParameter structures that will eventually be placed in the array.