indexing
	description: "Char format effect (CFE) constants for the rich edit control."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_CFE_CONSTANTS

feature -- Access

	Cfe_autocolor: INTEGER is 1073741824
			-- The text color is the return value of
			-- GetSysColor (COLOR_WINDOWTEXT).

	Cfe_bold: INTEGER is 1
			-- Characters are bold.

	Cfe_italic: INTEGER is 2
			-- Characters are italic.

	Cfe_protected: INTEGER is 16
			-- Characters are protected; an attempt to modify them
			-- will cause an EN_PROTECTED notification message.

	Cfe_strikeout: INTEGER is 8
			-- Characters are struck out.

	Cfe_underline: INTEGER is 4
			-- Characters are underlined.
	
invariant

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

end -- class WEL_CFE_CONSTANTS