Is()

Namespace ›› System ›› MfEnum ›› Methods ››
Parent Previous Next

Is()

Gets if current instance of object is of the same type.
Overrides MfObject.Is()

OutputVar := instance.Is(type,[ IncludeEnumItem])

Is(type[, IncludeEnumItem])

Gets if current instance of object is of the same type

Parameters

type

The object to compare this instance type with Type can be an instance of MfType or an object derived from MfObject or an instance of or a string containing the name of the object type such as "MfObject"

IncludeEnumItem

Optional Boolean value, Default is false.
If true and ObjType is MfEnum.EnumItem, type, instance, string name or non-instance class then true will be returned; Otherwise MfEnum.EnumItem is ignored as a possible valid ObjType.
Can be var boolean or instance of MfBool.

Returns

Returns true if current object instance is of the same type as the type Parameter otherwise false

Remarks

If a string is used as the Type case is ignored so "MfEnum" is the same as "mfenum"

Since

Version 0.4

Related

IsNotObjectInstance(), IsObjectInstance(), IsInstance(), IsMfObject()