Appendix D. Constants and Enumerations

   

This appendix consists of a reference for Visual Basic's built-in constants and enumerations.

VB.NET defines several enumerations in the Microsoft.VisualBasic namespace. For instance, the CompareMethod enumeration is defined as:

 Enum CompareMethod     Binary = 0     Text = 1 End Enum 

Thus, we can use the following expressions in our VB code:

 CompareMethod.Binary CompareMethod.Text 

On the other hand, VB also defines two equivalent built-in constants in the Constants class of the Microsoft.VisualBasic namespace that serve the same purpose:

 VbBinaryCompare VbTextCompare 

Note, however, that VB does not define built-in constants corresponding to every member of every enum. For instance, there are no built-in constants that correspond to the OpenMode enum members . This enum is used in the FileOpen procedure/statement:

 Enum OpenMode     Input = 1     Output = 2     Random = 4     Append = 8     Binary = 32 End Enum 

In this appendix, we list all of the VB constants and enumerations.

   


VB.Net Language in a Nutshell
VB.NET Language in a Nutshell
ISBN: B00006L54Q
EAN: N/A
Year: 2002
Pages: 503

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net