INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "The WAPI_RECT class defines the coordinates of the upper left", "and lower right corners of a rectangle."
project: "Visual Eiffel Win32 Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: winlib
class WAPI_RECT
feature -- Class data

left: INTEGER

top: INTEGER

right: INTEGER

bottom: INTEGER
feature -- Access

ptr: POINTER
feature -- Queries

data_size: INTEGER
feature -- Change

set_left (i: INTEGER)
ensure
correct_set: left = i

set_top (i: INTEGER)
ensure
correct_set: top = i

set_right (i: INTEGER)
ensure
correct_set: right = i

set_bottom (i: INTEGER)
ensure
correct_set: bottom = i

set (left_, top_, right_, bottom_: INTEGER)
end -- class WAPI_RECT

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES