Class: Wx::OutCode

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

Overview

Represents where a point is in relation to a rectangle.

Requires:

  • USE_GEOMETRY

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)