TiPlotComponent.AnnotationDefaultPenStlye

TiPlotComponent See Also

Specifies the default pen style used when creating annotation objects.

type TPenStyle = (psSolid, psDash, psDot, psDashDot, psDashDotDot, psClear, psInsideFrame);

property AnnotationDefaultPenStlye : TPenStyle;

Description

Use AnnotationDefaultPenStlye to get or set the default pen style used when creating annotation objects.

To modify the individual Pen Style of a particular Annotation after creation, see the PenStyle property of a specific Annotation Object.

These are the possible values:

Value
Meaning
psSolid
A solid line.
psDash
A line made up of a series of dashes.
psDot
A line made up of a series of dots.
psDashDot
A line made up of alternating dashes and dots.
psDashDotDot
A line made up of a series of dash-dot-dot combinations.
psClear
No line is drawn (used to omit the line around shapes that draw an outline using the current pen).
psInsideFrame
A solid line, but one that may use a dithered color if Width is greater than 1.

Example

Delphi

iComponent.AnnotationDefaultPenStlye := psSolid;

C++ Builder

iComponent->AnnotationDefaultPenStlye = psSolid;

Contents | Index | Previous | Next