INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "EOLE_VARFLAGS"
project: "Visual Eiffel Library"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: wine
class EOLE_VARFLAGS
feature --
-- VARFLAGS
--

EOLE_VARFLAG_FREADONLY: BIT 32
-- Assignment to the variable should not be allowed.

EOLE_VARFLAG_FSOURCE: BIT 32
-- The variable returns an object that is a source of events.

EOLE_VARFLAG_FBINDABLE: BIT 32
-- The variable supports data binding.

EOLE_VARFLAG_FREQUESTEDIT: BIT 32
-- ...

EOLE_VARFLAG_FDISPLAYBIND: BIT 32
-- The variable is displayed to the user as bindable
-- that is, VARFLAG_FBINDABLE must also be set.

EOLE_VARFLAG_FDEFAULTBIND: BIT 32
-- The variable is the single property that best represents
-- the object. Only one variable in a typeinfo may have this attibute.

EOLE_VARFLAG_FHIDDEN: BIT 32
-- The variable should not be displayed to the user in a browser,
-- though it exists and is bindable.
end -- class EOLE_VARFLAGS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES