- indexing
- title: "Visual Eiffel Library.", "Win32 API: The `TOOLTIPTEXT%' structure identifies a tool for which text is to be displayed and receives the text for the tool."
- project: "Visual Eiffel Win32 Library"
- revision: "$Revision: 1.2 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: winlib
class WAPI_TOOLTIPTEXT
- inherit
-
WAPI_ADAPTABLE
- end
- feature -- Class data
-
hdr: expanded WAPI_NMHDR
-
lpszText: POINTER
-
szText: BIT 640
-
hinst: INTEGER
-
uFlags: BIT 32
-
lParam: INTEGER
- feature -- Access
-
ptr: POINTER
- feature -- Queries
-
data_size: INTEGER
- feature -- Operations
-
set_lpszText (lpsztext_: POINTER)
-
set_lpszText_E (lpsztext_: STRING)
-
set_szText (str: STRING)
-
- require
-
correct_str:
(str /= void) and then (str.count < 80)
-
set_hinst (hinst_: INTEGER)
-
set_uFlags (uflags_: BIT 32)
end -- class WAPI_TOOLTIPTEXT