|
VARFLAGS
The VARFLAGS enumeration is defined as follows:
typedef enum tagVARFLAGS {
VARFLAG_FREADONLY= 1
, VARFLAG_FSOURCE= 0x2
, VARFLAG_FBINDABLE= 0x4
, VARFLAG_FREQUESTEDIT= 0x8
, VARFLAG_FDISPLAYBIND= 0x10
, VARFLAG_FDEFAULTBIND= 0x20
, VARFLAG_FHIDDEN= 0x40
} VARFLAGS;
Value
| Description
| VARFLAG_READONLY
| Assignment to the variable should not be allowed.
| VARFLAG_FSOURCE
| The variable returns an object that is a source of events.
| VARFLAG_FBINDABLE
| The variable supports data binding.
| VARFLAG_FDISPLAYBIND
| The variable is displayed to the user as bindable; that is, VARFLAG_FBINDABLE
must also be set.
| VARFLAG_FDEFAULTBIND
| The variable is the single property that best represents the object. Only one variable in a typeinfo may have this attibute.
| VARFLAG_FHIDDEN
| The variable should not be displayed to the user in a browser, though it
exists and is bindable.
|
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|