findObject method

GraphObject? findObject(
  1. String name
)

Search the visual tree starting at this Panel for a GraphObject whose GraphObject#name is the given name.

This does not recurse into the elements inside a Panel that holds elements for an #itemArray. @param {string} name The name to search for, using a case-sensitive string comparison. @return {GraphObject} If no such named object can be found, this returns null.

Implementation

_i3.GraphObject? findObject(_i2.String name) => _i4.callMethod(
      this,
      'findObject',
      [name],
    );