IndexOf method

int IndexOf(
  1. TComplexProperty complexProperty
)
Searches for a specific property and return its zero-based index within the collection. The property to locate in the collection.

Implementation

int IndexOf(TComplexProperty complexProperty) {
  return this._items.indexOf(complexProperty);
}