Pen Style Constants in TRichView

<< Click to display table of contents >>

Pen Style Constants in TRichView

Unit [VCL/FMX]: RVTypes / fmxRVTypes;

These constants define pen styles.

Syntax (VCL and LCL)

const
  rvpsSolid         = psSolid;

  rvpsDash          = psDash;

  rvpsDot           = psDot;

  rvpsDashDot       = psDashDot;

  rvpsDashDotDot    = psDashDotDot;

  rvpsClear         = psClear;

  rvpsInsideFrame   = psInsideFrame;

Syntax (FireMonkey)

type
  TRVPenStyle = (rvpsSolid, rvpsDash, 

    rvpsDot,  rvpsDashDot, 

    rvpsDashDotDot, rvpsClear, 

    rvpsInsideFrame);

See also:

TRVPenStyle