pkgOptionExplicit Enumeration
Used by the OptionExplicit property.
Namespace: VSLangProj2
Assembly: VSLangProj2 (in VSLangProj2.dll)
Syntax
'Declaration
<GuidAttribute("06954624-6A04-4EDD-9254-B86FD55D56EF")> _
Public Enumeration pkgOptionExplicit
'Usage
Dim instance As pkgOptionExplicit
[GuidAttribute("06954624-6A04-4EDD-9254-B86FD55D56EF")]
public enum pkgOptionExplicit
[GuidAttribute(L"06954624-6A04-4EDD-9254-B86FD55D56EF")]
public enum class pkgOptionExplicit
public enum pkgOptionExplicit
Members
Member name | Description | |
---|---|---|
pkgOptionExplicitOff | Variables do not need to be declared before use. | |
pkgOptionExplicitOn | Variables must be declared before use. |
Remarks
The value pkgOptionExplicitOn turns on checking for variable declaration. If you attempt to use an undeclared variable name, an error occurs at compile time. If you use pkgOptionExplicitOff, all undeclared variables are of Object type.