Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tip
titleTip

The string object also offers an Instr() method (though it uses a zero-based index). See the roString documentation for more details.

FindMemberFunction(object as Object, funName as String) As Interface

Returns the interface from the object that provides the specified function

...

or else returns invalid

...

.

...

It is only available if roDeviceInfo.HasFeature("FindMemberFunction") returns true.

...

It can be used as shown below:

Code Block
print FindMemberFunction({}, "Count") '= <Interface: ifAssociativeArray>

...