This documentation is archived and is not being maintained.
TypeLibFuncFlags Enumeration
.NET Framework 1.1
Describes the original settings of the FUNCFLAGS in the COM type library from where this method was imported.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum TypeLibFuncFlags [C#] [Flags] [Serializable] public enum TypeLibFuncFlags [C++] [Flags] [Serializable] __value public enum TypeLibFuncFlags [JScript] public Flags Serializable enum TypeLibFuncFlags
Remarks
TypeLibFuncFlags is used with the TypeLibFuncAttribute. The flags are retained for reference only. They are not used by the common language runtime.
For more information about FUNCFLAGS, see the MSDN library.
Members
| Member name | Description | Value |
|---|---|---|
| FBindable | The function that supports data binding. | 4 |
| FDefaultBind | The function that best represents the object. Only one function in a type information can have this attribute. | 32 |
| FDefaultCollelem | Permits an optimization in which the compiler looks for a member named "xyz" on the type "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. | 256 |
| FDisplayBind | The function that is displayed to the user as bindable. FBindable must also be set. | 16 |
| FHidden | The function should not be displayed to the user, although it exists and is bindable. | 64 |
| FImmediateBind | The function is mapped as individual bindable properties. | 4096 |
| FNonBrowsable | The property appears in an object browser, but not in a properties browser. | 1024 |
| FReplaceable | Tags the interface as having default behaviors. | 2048 |
| FRequestEdit | When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. | 8 |
| FRestricted | This flag is intended for system-level functions or functions that type browsers should not display. | 1 |
| FSource | The function returns an object that is a source of events. | 2 |
| FUiDefault | The type information member is the default member for display in the user interface. | 512 |
| FUsesGetLastError | The function supports GetLastError. | 128 |
Requirements
Namespace: System.Runtime.InteropServices
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: