GINO Graphics Suite - GINO v9.0  

gSetPenType

Syntax

[C/C++:]
void gSetPenType(int type);
[F90:]
subroutine gSetPenType(type)
integer, intent(in) :: type

Arguments

type
Pen type

= GDEFAULT, Undefined
= GERASER, Eraser
= GNOT, NOT mode
= GAND, AND mode
= GOR, OR mode
= GXOR, XOR mode
> 10, Device dependent

Description

The routine gSetPenType() specifies a pen type or drawing mode for subsequent graphic output. The absolute value of type defines the pen type.

If type is less than zero, a warning message is output. When the requested pen type is not available, or if type=GDEFAULT, selection is left to the device.

A call to gEnqSelectedPen() will identify the pen type actually selected, which will be zero if the device does not implement pen types.

See Also

gSetPenType Usage
gEnqSelectedPen