Edit

Share via


TypeLibVarFlags Enum

Definition

Describes the original settings of the VARFLAGS in the COM type library from which the variable was imported.

This enumeration supports a bitwise combination of its member values.

public enum class TypeLibVarFlags
[System.Flags]
public enum TypeLibVarFlags
[System.Flags]
[System.Serializable]
public enum TypeLibVarFlags
[System.Flags]
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum TypeLibVarFlags
[<System.Flags>]
type TypeLibVarFlags = 
[<System.Flags>]
[<System.Serializable>]
type TypeLibVarFlags = 
[<System.Flags>]
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type TypeLibVarFlags = 
Public Enum TypeLibVarFlags
Inheritance
TypeLibVarFlags
Attributes

Fields

FReadOnly 1

Assignment to the variable should not be allowed.

FSource 2

The variable returns an object that is a source of events.

FBindable 4

The variable supports data binding.

FRequestEdit 8

Indicates that the property supports the COM OnRequestEdit notification.

FDisplayBind 16

The variable is displayed as bindable. FBindable must also be set.

FDefaultBind 32

The variable is the single property that best represents the object. Only one variable in a type info can have this value.

FHidden 64

The variable should not be displayed in a browser, though it exists and is bindable.

FRestricted 128

This flag is intended for system-level functions or functions that type browsers should not display.

FDefaultCollelem 256

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.

FUiDefault 512

The default display in the user interface.

FNonBrowsable 1024

The variable appears in an object browser, but not in a properties browser.

FReplaceable 2048

Tags the interface as having default behaviors.

FImmediateBind 4096

The variable is mapped as individual bindable properties.

Remarks

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.

Applies to