indexing
	description: "Tab control item flag (TCIF) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_TCIF_CONSTANTS

feature -- Access

	Tcif_image: INTEGER is 2
			-- The iImage member is valid.
			--
			-- Declared in Windows as TCIF_IMAGE

	Tcif_param: INTEGER is 8
			-- The lParam member is valid.
			--
			-- Declared in Windows as TCIF_PARAM

	Tcif_rtlreading: INTEGER is 4
			-- Windows 95 only: Displays the text of pszText
			-- using right-to-left reading order on Hebrew or
			-- Arabic systems.
			--
			-- Declared in Windows as TCIF_RTLREADING

	Tcif_state: INTEGER is 16
			-- Declared in Windows as TCIF_STATE

	Tcif_text: INTEGER is 1
			-- The pszText member is valid.
			--
			-- Declared in Windows as TCIF_TEXT
	
invariant

		-- from ANY
	reflexive_equality: standard_is_equal (Current)
	reflexive_conformance: conforms_to (Current)

end -- class WEL_TCIF_CONSTANTS