IVarInfo Interface
Provides information about the properties of the specified variable.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)
Syntax
'Declaration
<GuidAttribute("84CC10F0-E424-4D1B-95A6-E622285CD525")> _
Public Interface IVarInfo
[GuidAttribute("84CC10F0-E424-4D1B-95A6-E622285CD525")]
public interface IVarInfo
[GuidAttribute(L"84CC10F0-E424-4D1B-95A6-E622285CD525")]
public interface class IVarInfo
[<GuidAttribute("84CC10F0-E424-4D1B-95A6-E622285CD525")>]
type IVarInfo = interface end
public interface IVarInfo
The IVarInfo type exposes the following members.
Properties
Name | Description | |
---|---|---|
DispID | Gets or sets the variable or function dispatch ID. | |
HelpString | Gets or sets the variable or function Help string. | |
Name | Gets or sets the name of the object. | |
Type | Gets or sets the variable's type. | |
VariantType | Gets or sets the variable's variant type. | |
VTSType | Gets or sets the VTS type of the variable. |
Top
Remarks
The IVarInfo object controls information about the properties contained in the specified variable, such as its name and dispatch identifier, any associated help string, its type and variant type, and whether it is a VTS variable. You can display a variable's properties in a custom wizard that adds variables to a project. Such a wizard must understand the parts of the variable and parse them within the wizard. For an example of a Visual Studio wizard that uses IVarInfo, see Add Member Variable Wizard.
Note
See How to: Interpret Visual C++ Wizard Model Examples for more information about how properties and methods are called in both the HTML and the default.js files of a custom wizard.