Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Specifies documentation information for a variable.
Syntax
<var type="ValueType" integer="true|false"
domElement="true|false" mayBeNull="true|false"
elementType="ArrayElementType" elementInteger="true|false"
elementDomElement="true|false" elementMayBeNull="true|false"
helpKeyword="keyword" locid="descriptionID">description
</var>
Parameters
type
Optional. The data type of the variable. The type can be one of the following:
An ECMAScript language type that's in the ECMAScript 5 specification, such as
NumberandObject.A DOM object, such as
HTMLElement,Window, andDocument.A JavaScript constructor function.
integerOptional. IftypeisNumber, specifies whether the variable is an integer. Set totrueto indicate that the variable is an integer; otherwise, set tofalse. This attribute is not used by Visual Studio to provide IntelliSense information.domElementOptional. This attribute is deprecated; thetypeattribute takes precedence over this attribute. This attribute specifies whether the documented variable is a DOM element. Set totrueto specify that the variable is a DOM element; otherwise, set tofalse. If thetypeattribute is not set anddomElementis set totrue, IntelliSense treats the documented variable as anHTMLElementwhen performing statement completion.mayBeNullOptional. Specifies whether the documented variable can be set to null. Set totrueto indicate that the variable can be set to null; otherwise, set tofalse. The default value isfalse. This attribute is not used by Visual Studio to provide IntelliSense information.elementTypeOptional. IftypeisArray, this attribute specifies the type of the elements in the array.elementIntegerOptional. IftypeisArrayandelementTypeisNumber, this attribute specifies whether the elements in the array are integers. Set totrueto indicate that the elements in the array are integers; otherwise, set tofalse. This attribute is not used by Visual Studio to provide IntelliSense information.elementDomElementOptional. This attribute is deprecated; theelementTypeattribute takes precedence over this attribute. IftypeisArray, this attribute specifies whether the elements in the array are DOM elements. Set totrueto specify that the elements are DOM elements; otherwise, set tofalse. If theelementTypeattribute is not set andelementDomElementis set totrue, IntelliSense treats each element in the array as anHTMLElementwhen performing statement completion.elementMayBeNullOptional. IftypeisArray, specifies whether the elements in the array can be set to null. Set totrueto indicate that the elements in the array can be set to null; otherwise, set tofalse. The default value isfalse. This attribute is not used by Visual Studio to provide IntelliSense information.helpKeywordOptional. The keyword for F1 Help.locidOptional. The identifier for localization information about the variable. The identifier is either a member ID or it corresponds to thenameattribute value in a message bundle defined by OpenAjax metadata. The identifier type depends on the format specified in the <loc> tag.descriptionOptional. A description of the variable.
Example
The following code example shows how to use the <var> element.
/// <var>A rectangle that has a width of 5.</var>
var Rectangle = {
/// <field type = 'Number'>The width of the rectangle.</field>
wid: 5,
/// <field type = 'Number'>The length of the rectangle.</field>
len: 0,
/// <field type='Number'>Returns the area of the rectangle.</field>
getArea: function (wid, len) {
return len * wid;
}
}