typedef struct tagVECTORLINE
{
VECTOROBJECT Object;
VECTORPOINT Point[2];
VECTORPEN Pen;
} VECTORLINE, * pVECTORLINE;
The VECTORLINE structure holds information about a vector line object.
Member |
Description |
Object |
Abstract object. |
Point |
An array of VECTORPOINT structures that contain the beginning and ending points of a line in space. |
Pen |
VECTORPEN structure that contains information about the pen to use when drawing the vector line object. |
nSize of the Object member must be the sizeof this structure.
nType of the Object member must be VECTOR_LINE.
pVECTORLINE is a pointer to a VECTORLINE structure.