IsControl()

Namespace ›› System ›› MfChar ›› Methods ››
Parent Previous Next

IsControl()

OutputVar := MfChar.IsControl(c)
OutputVar := MfChar.IsControl(s, index)

MfChar.IsControl(c)

Indicates whether the specified Unicode character is categorized as a control character for c.

Returns

Returns true if c is control character; Otherwise, false.

MfChar.IsControl(s, index)

Indicates whether the specified Unicode character is categorized as a control character from MfString instance or var containing a string at the location of Zero-based index.

Returns

Returns true if the character at position index in s is control character; Otherwise, false.

Parameters

c

The character to evaluate. Can be a var containing character or MfChar instance or string var containing hex value Eg:"0x0061". c corresponds to a single linguistic Unicode character.

s

A string. Can be a string var or MfString instance.

index

The zero-based index position of the character to evaluate in s. Can be a Integer var or MfInteger instance.

Throws

Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentOutOfRangeException if index is not in the valid range of s.
Throws MfNotSupportedException if call to method is outside its overloads.
Throws MfInvalidOperationException if not called as a static method.

Remarks

Static method.
Control characters are formatting and other non-printing characters, such as ACK, BEL, CR, FF, LF, and VT. T The Unicode standard assigns code points from U+0000 to U+001F, U+007F, and from U+0080 to U+009F to control characters. According to the Unicode standard, these values are to be interpreted as control characters unless their use is otherwise defined by an application. Valid control characters are members of the MfUnicodeCategory.Control category.