_ExpansionFunctionType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the type of an expansion function.
public enum class _ExpansionFunctionType
public enum class _ExpansionFunctionType
enum _ExpansionFunctionType
public enum _ExpansionFunctionType
type _ExpansionFunctionType =
Public Enum _ExpansionFunctionType
- Inheritance
-
_ExpansionFunctionType
Fields
Name | Value | Description |
---|---|---|
eft_List | 0 | The expansion function represents a list of values. This list is typically displayed in an IntelliSense completion list. |
eft_Value | 1 | The expansion function represents a single value. |
Remarks
COM Signature
From textmgr2.idl:
enum _ExpansionFunctionType {
eft_List,
eft_Value
};
typedef DWORD ExpansionFunctionType;
These values are returned from the GetFunctionType method in the IVsExpansionFunction interface.