TypeLibVarFlags Enumeration
.NET Framework 2.0
Describes the original settings of the VARFLAGS in the COM type library from which the variable was imported.
Assembly: mscorlib (in mscorlib.dll)
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> _ <ComVisibleAttribute(True)> _ Public Enumeration TypeLibVarFlags 'Usage Dim instance As TypeLibVarFlags
/** @attribute SerializableAttribute() */ /** @attribute FlagsAttribute() */ /** @attribute ComVisibleAttribute(true) */ public enum TypeLibVarFlags
SerializableAttribute FlagsAttribute ComVisibleAttribute(true) public enum TypeLibVarFlags
| Member name | Description | |
|---|---|---|
| FBindable | The variable supports data binding. | |
| FDefaultBind | The variable is the single property that best represents the object. Only one variable in a type info can have this value. | |
| 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. | |
| FDisplayBind | The variable is displayed as bindable. FBindable must also be set. | |
| FHidden | The variable should not be displayed in a browser, though it exists and is bindable. | |
| FImmediateBind | The variable is mapped as individual bindable properties. | |
| FNonBrowsable | The variable appears in an object browser, but not in a properties browser. | |
| FReadOnly | Assignment to the variable should not be allowed. | |
| FReplaceable | Tags the interface as having default behaviors. | |
| FRequestEdit | Indicates that the property supports the COM OnRequestEdit notification. | |
| FRestricted | This flag is intended for system-level functions or functions that type browsers should not display. | |
| FSource | The variable returns an object that is a source of events. | |
| FUiDefault | The default display in the user interface. |
TypeLibVarFlags is used in conjunction with the TypeLibVarAttribute. The flags are retained for reference only. They are not used by the common language runtime.
For more information, see VARFLAGS in the MSDN library.
Windows 98, Windows 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: