|
FUNCFLAGS
The FUNCFLAGS enumeration is defined as follows:
typedef enum tagFUNCFLAGS {
FUNCFLAG_FRESTRICTED= 1
, FUNCFLAG_FSOURCE= 0x2
, FUNCFLAG_FBINDABLE= 0x4
, FUNCFLAG_FREQUESTEDIT= 0x8
, FUNCFLAG_FDISPLAYBIND= 0x10
, FUNCFLAG_FDEFAULTBIND= 0x20
, FUNCFLAG_FHIDDEN= 0x40
} FUNCFLAGS;
Value
| Description
| FUNCFLAG_FRESTRICTED
| The function should not be accessible from macro languages. This flag is
intended for system-level functions or functions that you do not want type browsers
to display.
| FUNCFLAG_FSOURCE
| The function returns an object that is a source of events.
| FUNCFLAG_FBINDABLE
| The function that supports data binding.
| FUNCFLAG_FDISPLAYBIND
| The function that is displayed to the user as bindable; that is,
FUNC_FBINDABLE must also be set.
| FUNCFLAG_FDEFAULTBIND
| The function that best represents the object. Only one function in a typeinfo may have this attribute.
| FUNCFLAG_FHIDDEN
| The function should not be displayed to the user, 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 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
|