Share via


FUNCFLAGS (Compact 2013)

3/26/2014

This enumeration identifies the constants that define the properties of a function.

Syntax

typedef enum tagFUNCFLAGS {
  FUNCFLAG_FRESTRICTED = 0x1,
  FUNCFLAG_FSOURCE = 0x2,
  FUNCFLAG_FBINDABLE = 0x4,
  FUNCFLAG_FREQUESTEDIT = 0x8,
  FUNCFLAG_FDISPLAYBIND = 0x10,
  FUNCFLAG_FDEFAULTBIND = 0x20,
  FUNCFLAG_FHIDDEN = 0x40,
  FUNCFLAG_FUSESGETLASTERROR = 0x80,
  FUNCFLAG_FDEFAULTCOLLELEM = 0x100,
  FUNCFLAG_FUIDEFAULT = 0x200,
  FUNCFLAG_FNONBROWSABLE = 0x400,
  FUNCFLAG_FREPLACEABLE = 0x800,
  FUNCFLAG_FIMMEDIATEBIND = 0x1000
} FUNCFLAGS;

Elements

  • FUNCFLAG_FRESTRICTED
    Indicates that the function should not be accessible from macro languages. This flag is intended for system-level functions or functions that type browsers should not display.
  • FUNCFLAG_FSOURCE
    Indicates that the function returns an object that is a source of events.
  • FUNCFLAG_FBINDABLE
    Indicates the function that supports data binding.
  • FUNCFLAG_FREQUESTEDIT
    When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. The implementation of IPropertyNotifySink::OnRequestEdit determines if the call is allowed to set the property.
  • FUNCFLAG_FDISPLAYBIND
    Indicates the function that is displayed to the user as bindable. FUNC_FBINDABLE must also be set.
  • FUNCFLAG_FDEFAULTBIND
    Indicates the function that best represents the object. Only one function in a type information can have this attribute.
  • FUNCFLAG_FHIDDEN
    Indicates that the function should not be displayed to the user, although it exists and is bindable.
  • FUNCFLAG_FUSESGETLASTERROR
    Indicates that the function supports GetLastError. If an error occurs during the function, the caller can call GetLastError to retrieve the error code.
  • FUNCFLAG_FDEFAULTCOLLELEM
    Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules.
  • FUNCFLAG_FUIDEFAULT
    Indicates that the type information member is the default member for display in the user interface.
  • FUNCFLAG_FNONBROWSABLE
    Indicates that the property appears in an object browser, but not in a properties browser.
  • FUNCFLAG_FREPLACEABLE
    Tags the interface as having default behaviors.
  • FUNCFLAG_FIMMEDIATEBIND
    Mapped as individual bindable properties.

Remarks

FUNCFLAG_FHIDDEN means that the property should never be shown in object browsers, property browsers, and so on. This function is useful for removing items from an object model. Code can bind to the member, but the user will never know that the member exists.

FUNCFLAG_FNONBROWSABLE means that the property should not be displayed in a properties browser. It is used in circumstances in which an error would occur if the property were shown in a properties browser.

FUNCFLAG_FRESRICTED means that macro-oriented programmers should not be allowed to access this member. These members are usually treated as _FHIDDEN by tools such as Visual Basic, with the main difference being that code cannot bind to those members.

Requirements

Header

oaidl.h

See Also

Reference

Automation Enumerations

Other Resources

GetLastError