- indexing
- title: "Visual Eiffel Library.", "The WAPI_SIZE class specifies the width and height 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_SIZE
- inherit
-
WAPI_GET_POINTER
- end
- feature -- Class data
-
cx: INTEGER
-
cy: INTEGER
- feature -- Access
-
ptr: POINTER
- feature -- Operations
-
set_cx (cx_: INTEGER)
-
- ensure
-
correct_set:
cx = cx_
-
set_cy (cy_: INTEGER)
-
- ensure
-
correct_set:
cy = cy_
-
set (cx_, cy_: INTEGER)
end -- class WAPI_SIZE