indexing description: "Up-Down control message (UDM) constants." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class interface WEL_UDM_CONSTANTS feature -- Access udm_getaccel: INTEGER -- Retrieves acceleration information for an up-down -- control. udm_getbase: INTEGER -- Retrieves the current radix base (that is, either -- base 10 or 16) for an up-down control. udm_getbuddy: INTEGER -- Retrieves the handle of the current buddy window. udm_getpos: INTEGER -- Retrieves the current position of an up-down control. udm_getrange: INTEGER -- Retrieves the minimum and maximum positions (range) -- for an up-down control. udm_getrange32: INTEGER -- Retrieves the minimum and maximum positions (range) -- for an up-down control. udm_setaccel: INTEGER -- Sets the acceleration for an up-down control. udm_setbase: INTEGER -- Sets the radix base for an up-down control. The -- base value determines whether the buddy window -- displays numbers in decimal or hexadecimal digits. -- Hexadecimal numbers are always unsigned, and decimal -- numbers are signed. udm_setbuddy: INTEGER -- Sets the buddy window for an up-down control. udm_setpos: INTEGER -- Sets the current position for an up-down control. udm_setrange: INTEGER -- Sets the minimum and maximum positions (range) for -- an up-down control. invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) end -- class WEL_UDM_CONSTANTS