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.
Gets the value of IgnoreCase as boolean var of true or false.
Sets the Value of the IgnoreCase to true or false.
Throws MfInvalidCastException if value is not a valid boolean var or object.
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.
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