OutputVar := MfObject.IsObjInstance(obj)
OutputVar := MfObject.IsObjInstance(obj, objType)
Checks to see if obj is an instance of MfObject.
Returns true if obj is instance of MfObject or class instance derived from MfObject; Otherwise false.
Checks to see if obj is instance specified by objType.
Returns true if obj is instance of objType; Otherwise false.
obj
an object derived from MfObject to check.
objType
String name of type; or MfObject or derived class; or instance of MfType class.
Static functions.
Only objects that inherit from MfObject are valid object to check. If objType param is ignored then object is checked as MfObject
IsNotObjectInstance(), IsInstance(), IsMfObject(), Is()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
try {
sc := new MfStringComparison(MfStringComparison.Instance.Ordinal)
result := MyFunc(sc)
MsgBox Result:%result% ; Displays Result:Something Ordinal
} catch e {
msg := e.Message
MsgBox %msg%
}
try {
sc := "something"
result := MyFunc(sc) ; this will cause an error because sc in not instance of MfStringComparison
MsgBox Result:%result%
} catch e {
msg := e.Message
MsgBox %msg%
}
MyFunc(myObj) {
; if myObj is not an instance of MfStringComparison we will throw an error
if (!MfObject.IsObjInstance(myObj, "MfStringComparison")) {
ex := new MfArgumentException("Error was expecting instance of MfStringComparison", "myObj")
ex.SetProp(A_LineFile, A_LineFile, A_ThisFunc)
throw ex
}
if (myObj.Value = MfStringComparison.Instance.Ordinal.Value) {
return "Something Ordinal"
}
return "Nothing Ordinal"
}