PCMINFO 

2.0     

Pen collection mode information. All regions and rectangles are in screen coordinates. Time-out values are in milliseconds.

typedef struct { 

     DWORD cbSize;

     DWORD dwPcm;

     RECT rectBound;

     RECT rectExclude;

     HRGN hrgnBound;

     HRGN hrgnExclude;

     DWORD dwTimeout;

} PCMINFO;

 

Members

cbSize

Size of this structure in bytes.

dwPcm

A combination of PCM_ flags specifying options for pen collection.

rectBound

Bounding rectangle for pen collection.

rectExclude

Exclusion rectangle for pen collection.

hrgnBound

Bounding region for pen collection.

hrgnExclude

Exclusion region for pen collection.

dwTimeout

Time-out before terminating pen collection.

 

Comments

Before using PCMINFO, an application must initialize cbSize with sizeof( PCMINFO ).

See Also

StartPenInput