IgnoreCase

Namespace ›› System ›› MfString ›› Properties ››
Parent Previous Next

IgnoreCase

Gets or sets if the MfString 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

strObjFirst := new MfString("Hello World") ; default value of Ignore case is true
strObjSecond := new MfString("hello world") ; default value of Ignore case is true

Msgbox % strObjFirst.CompareTo(strObjSecond) ; displays 0
Msgbox % strObjFirst.Equals(strObjSecond)?"True":"False" ; displays True

strObjFirst.IgnoreCase := false
Msgbox % strObjFirst.CompareTo(strObjSecond) ; displays -32
Msgbox % strObjFirst.Equals(strObjSecond)?"True":"False" ; displays False