Class: Wx::OutCode
- Inherits:
-
Enum
- Object
- Enum
- Wx::OutCode
- Defined in:
- lib/wx/doc/gen/geometry.rb
Overview
Represents where a point is in relation to a rectangle.
Constant Summary collapse
- Inside =
The point is inside the rectangle.
Wx::OutCode.new(0)
- OutLeft =
The point is outside of the rectangle, to its left.
Wx::OutCode.new(1)
- OutRight =
The point is outside of the rectangle, to its right.
Wx::OutCode.new(2)
- OutTop =
The point is outside of the rectangle, above it.
Wx::OutCode.new(8)
- OutBottom =
The point is outside of the rectangle, below it.
Wx::OutCode.new(4)