Click or drag to resize
KaxNavigationItemCollection Class
A collection of KaxNavigationItem objects in a KaxNavigationBar control.
Inheritance Hierarchy
SystemObject
  System.Web.UIStateManagedCollection
    Kettic.AspNet.ControlsControlItemCollection
      Kettic.AspNet.ControlsKaxNavigationItemCollection

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public class KaxNavigationItemCollection : ControlItemCollection

The KaxNavigationItemCollection type exposes the following members.

Constructors
  NameDescription
Public methodKaxNavigationItemCollection
Initializes a new instance of the KaxNavigationItemCollection class.
Top
Methods
  NameDescription
Public methodCode exampleAdd
Appends the specified KaxNavigationItem object to the end of the current KaxNavigationItemCollection.
Public methodCode exampleAddRange
Appends the specified array of KaxNavigationItem objects to the end of the current KaxNavigationItemCollection.
Public methodContains
Determines whether the specified KaxNavigationItem object is in the current KaxNavigationItemCollection.
Public methodCode exampleFindItem
Returns the first KaxNavigationItem that matches the conditions defined by the specified predicate. The predicate should returns a boolean value.
Public methodFindItemByAttribute
Searches the nodes in the collection for a KaxNavigationItem which contains the specified attribute and attribute value.
Public methodFindItemByText(String)
Searches all nodes for a KaxNavigationItem with a Text property equal to the specified text.
Public methodFindItemByText(String, Boolean)
Searches the KaxNavigationBar control for the first KaxNavigationItem with a Text property equal to the specified value.
Public methodFindItemByValue(String)
Searches all nodes for a KaxNavigationItem with a Value property equal to the specified value.
Public methodFindItemByValue(String, Boolean)
Searches the KaxNavigationBar control for the first KaxNavigationItem with a Value property equal to the specified value.
Public methodIndexOf
Determines the index of the specified KaxNavigationItem object in the collection.
Public methodInsert
Inserts the specified KaxNavigationItem object in the current KaxNavigationItemCollection at the specified index location.
Public methodRemove
Removes the specified KaxNavigationItem object from the current KaxNavigationItemCollection.
Public methodRemoveAt
Removes the KaxNavigationItem object at the specified index from the current KaxNavigationItemCollection.
Top
Properties
  NameDescription
Public propertyItem
Gets the KaxNavigationItem object at the specified index in the current KaxNavigationItemCollection.
Top
Remarks
The KaxNavigationItemCollection class represents a collection of KaxNavigationItem objects.
  • Use the indexer to programmatically retrieve a single KaxNavigationItem from the collection, using array notation.
  • Use the Count property to determine the total number of panel items in the collection.
  • Use the Add method to add items in the collection.
  • Use the Remove method to remove items from the collection.
See Also