IgnoreCase

Namespace ›› System ›› MfChar ›› Properties ››
Parent Previous Next

IgnoreCase

Gets or sets if the MfChar instance should Ignore case or not.

OutputVar := instance.IgnoreCase
instance.IgnoreCase := Value

Value

Value can be var containing boolean such as true or false.
Value can be MfBool instance.

Get

Gets the value of IgnoreCase as boolean var of true or false.

Set

Sets the Value of the IgnoreCase to true or false.

Throws

Throws MfInvalidCastException if value is not a valid boolean var or object.

Remarks

IgnoreCase is not affected by the state of ReturnAsObject and always returns a var containing a boolean.
The default value is false. StringCaseSense has no effect IgnoreCase.

Example

chrA := new MfChar("A")
chrB := new MfChar("a")

MsgBox % chrA.Equals(chrB) ; displays 1 for true

chrA.IgnoreCase := false
MsgBox % chrA.Equals(chrB) ; displays 0 for false