StreamTokenizer.WhitespaceChars(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies that all characters c in the range
low <= <i>c</i> <= high
are white space characters.
[Android.Runtime.Register("whitespaceChars", "(II)V", "GetWhitespaceChars_IIHandler")]
public virtual void WhitespaceChars (int low, int hi);
[<Android.Runtime.Register("whitespaceChars", "(II)V", "GetWhitespaceChars_IIHandler")>]
abstract member WhitespaceChars : int * int -> unit
override this.WhitespaceChars : int * int -> unit
Parameters
- low
- Int32
the low end of the range.
- hi
- Int32
the high end of the range.
- Attributes
Remarks
Specifies that all characters c in the range low <= <i>c</i> <= high
are white space characters. White space characters serve only to separate tokens in the input stream.
Any other attribute settings for the characters in the specified range are cleared.
Java documentation for java.io.StreamTokenizer.whitespaceChars(int, int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.