ControlChars Class

 <  Day Day Up  >  

The ControlChars class contains a set of character constants that are useful when you are composing strings.

 Public Const Back As Char = ChrW(8) 

A backspace character. Constant equivalent: vbBack .

 Public Const Cr As Char = ChrW(13) 

A carriage return character. Constant equivalent: vbCr .

 Public Const CrLf As String = ChrW(13) & ChrW(10) 

A carriage return followed by a line feed. Constant equivalent: vbCrLf .

 Public Const FormFeed As Char = ChrW(12) 

A form feed character. Constant equivalent: vbFormFeed .

 Public Const Lf As Char = ChrW(10) 

A line feed character. Constant equivalent: vbLf .

 Public Const NewLine As String = ChrW(13) & ChrW(10) 

A carriage return followed by a line feed. Constant equivalent: vbNewLine .

 Public Const NullChar As Char = ChrW(0) 

A null character. Constant equivalent: vbNullChar .

 Public Const Quote As Char = ChrW(34) 

A double quote character.

 Public Const Tab As Char = ChrW(9) 

A tab character. Constant equivalent: vbTab .

 Public Const VerticalTab As Char = ChrW(11) 

A vertical tab character. Constant equivalent: vbVerticalTab .

 <  Day Day Up  >  


The Visual Basic .NET Programming Language
The Visual Basic .NET Programming Language
ISBN: 0321169514
EAN: 2147483647
Year: 2004
Pages: 173
Authors: Paul Vick

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