- indexing
- title: "Visual Eiffel Library.", "The WAPI_LOGBRUSH class defines the style, color, and pattern", "of a physical brush."
- 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_LOGBRUSH
- inherit
-
WAPI_GET_POINTER
- end
- feature -- Class data
-
lbStyle: INTEGER
-
lbColor: INTEGER
-
lbHatch: INTEGER
- feature -- Access
-
ptr: POINTER
- feature -- Change
-
set_lbStyle (i: INTEGER)
-
- ensure
-
correct_set:
lbstyle = i
-
set_lbColor (i: INTEGER)
-
- ensure
-
correct_set:
lbcolor = i
-
set_lbHatch (i: INTEGER)
-
- ensure
-
correct_set:
lbhatch = i
end -- class WAPI_LOGBRUSH