FUNCFLAGS Enumeration
.NET Framework 3.0
NOTE: This enumeration is now obsolete.
Use System.Runtime.InteropServices.ComTypes.FUNCFLAGS instead.This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Runtime.InteropServicesAssembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <FlagsAttribute> _ <ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCFLAGS instead. http://go.microsoft.com/fwlink/?linkid=14202", False)> _ Public Enumeration FUNCFLAGS As Short 'Usage Dim instance As FUNCFLAGS
/** @attribute SerializableAttribute() */
/** @attribute FlagsAttribute() */
/** @attribute ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCFLAGS instead. http://go.microsoft.com/fwlink/?linkid=14202", false) */
public enum FUNCFLAGS
SerializableAttribute FlagsAttribute ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCFLAGS instead. http://go.microsoft.com/fwlink/?linkid=14202", false) public enum FUNCFLAGS
| Member name | Description | |
|---|---|---|
| FUNCFLAG_FBINDABLE | The function that supports data binding. | |
| FUNCFLAG_FDEFAULTBIND | The function that best represents the object. Only one function in a type information can have this attribute. | |
| 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, a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules. | |
| FUNCFLAG_FDISPLAYBIND | The function that is displayed to the user as bindable. FUNCFLAG_FBINDABLE must also be set. | |
| FUNCFLAG_FHIDDEN | The function should not be displayed to the user, although it exists and is bindable. | |
| FUNCFLAG_FIMMEDIATEBIND | Mapped as individual bindable properties. | |
| FUNCFLAG_FNONBROWSABLE | The property appears in an object browser, but not in a properties browser. | |
| FUNCFLAG_FREPLACEABLE | Tags the interface as having default behaviors. | |
| FUNCFLAG_FREQUESTEDIT | When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the call is allowed to set the property. | |
| FUNCFLAG_FRESTRICTED | 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 | The function returns an object that is a source of events. | |
| FUNCFLAG_FUIDEFAULT | The type information member is the default member for display in the user interface. | |
| FUNCFLAG_FUSESGETLASTERROR | The function supports GetLastError. If an error occurs during the function, the caller can call GetLastError to retrieve the error code. |
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: