Class: Wx::OutCode
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)
Method Summary
Methods inherited from Enum
#!, #&, #<=>, [], #allbits?, #anybits?, #coerce, enumerators, #eql?, #initialize, #inspect, #integer?, #method_missing, #nobits?, non_distinct, #real?, set_non_distinct, #succ, #to_int, #to_s, #|, #~
Constructor Details
This class inherits a constructor from Wx::Enum
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Wx::Enum