Class: Wx::PenCap

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/pen.rb

Overview

The possible cap values of a Pen.

Todouse PENCAP_ prefix

Constant Summary collapse

CAP_INVALID =
Wx::PenCap.new(-1)
CAP_ROUND =

The pen will have a rounded edge and will extend beyond the start and end of a line.

Wx::PenCap.new(130)
CAP_PROJECTING =

The pen's edge will be square and will extend beyond the start and end of a line.

Wx::PenCap.new(131)
CAP_BUTT =

The pen's edge will be square and will not extend beyond the start and end of a line.

Wx::PenCap.new(132)