- indexing
- title: "EOLE_RECT"
- project: "Visual Eiffel Library"
- revision: "$Revision: 1.2 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: wine
class EOLE_RECT
- inherit
-
EOLE_OBJECT_WITH_POINTER
- end
- creation
- make,
- make_from_rect
- feature
-
make
-
make_from_rect (r: RECT)
-
allocate: POINTER
-
set_left (left: INTEGER)
-
set_right (right: INTEGER)
-
set_top (top: INTEGER)
-
set_bottom (bottom: INTEGER)
-
set_rect (left, top, right, bottom: INTEGER)
-
get_left: INTEGER
-
get_right: INTEGER
-
get_top: INTEGER
-
get_bottom: INTEGER
end -- class EOLE_RECT