LVectorBase::GetPolygonMode
#include "ltwrappr.h"
virtual L_INT LVectorBase::GetPolygonMode(L_VOID)
Gets the current polygon drawing mode.
Returns
The current polygon drawing mode. Possible values are:
Value |
Meaning |
VECTOR_POLYGON_POINT |
Draw only the edge points on polygons and lines. |
VECTOR_POLYGON_LINE |
Draw as a wire-frame. |
VECTOR_POLYGON_FILL |
Draw solid polygons. |
VECTOR_POLYGON_FILL_RASTER_ALWAYS |
Draw solid polygons and always draw raster objects. |
Comments
This function is not supported in the GDI engine.
Required DLLs and Libraries
LVKRN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Functions: |
|
Topics: |
|
|
Example
void Example28(LVectorBase &Vector)
{
L_INT nMode; /* Current polygon mode */
nMode = Vector.GetPolygonMode();
switch( nMode )
{
case VECTOR_POLYGON_POINT:
Vector.SetPolygonMode(VECTOR_POLYGON_LINE );
break;
case VECTOR_POLYGON_LINE :
Vector.SetPolygonMode(VECTOR_POLYGON_FILL );
break;
case VECTOR_POLYGON_FILL :
Vector.SetPolygonMode(VECTOR_POLYGON_FILL_RASTER_ALWAYS );
break;
case VECTOR_POLYGON_FILL_RASTER_ALWAYS :
Vector.SetPolygonMode(VECTOR_POLYGON_POINT );
break;
}
}