Enum IGDIPlus.TGPLineJoin
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPLineJoin = (LineJoinMiter, LineJoinBevel, LineJoinRound, LineJoinMiterClipped);
C++ Builder:
enum TGPLineJoin {LineJoinMiter, LineJoinBevel, LineJoinRound, LineJoinMiterClipped};
Visual C++ (MFC):
enum CTGPLineJoin {LineJoinMiter, LineJoinBevel, LineJoinRound, LineJoinMiterClipped};
Summary
Specifies how to join consecutive line or curve segments in a figure (subpath) contained in a GraphicsPath object.
Description
This enumeration that specifies how to join consecutive line or curve segments in a figure (subpath) contained in a GraphicsPath object.
Values
LineJoinMiter | Specifies a mitered join. This produces a sharp corner or a clipped corner, depending on whether the length of the miter exceeds the miter limit. |
LineJoinBevel | Specifies a beveled join. This produces a diagonal corner. |
LineJoinRound | Specifies a circular join. This produces a smooth, circular arc between the lines. |
LineJoinMiterClipped | Specifies a mitered join. This produces a sharp corner or a beveled corner, depending on whether the length of the miter exceeds the miter limit. |