Print Friendly

Class Array

Package:Global
Class:Array
Extends:Object
Defined In:Ext.js

Properties   -  Methods   -  Events

Public Properties

This class has no public properties.

Public Methods

Method Defined By
  indexOfObject o ) : Number Array
Checks whether or not the specified object exists in the array.
  removeObject o ) : void Array
Removes the specified object from the array. If the object is not found nothing happens.

Public Events

This class has no public events.

Method Details

indexOf

public function indexOf( Object o )
Checks whether or not the specified object exists in the array.
Parameters:
  • o : Object
    The object to check for
Returns:
  • Number
    The index of o in the array (or -1 if it is not found)
This method is defined by Array.

remove

public function remove( Object o )
Removes the specified object from the array. If the object is not found nothing happens.
Parameters:
  • o : Object
    The object to remove
Returns:
  • void
This method is defined by Array.

Ext - Copyright © 2006-2007 Ext JS, LLC
All rights reserved.