Click or drag to resize
KaxTrackBarItemCollection Class
A collection of KaxTrackBarItem objects in a KaxTrackBar control.
Inheritance Hierarchy
SystemObject
  System.Web.UIStateManagedCollection
    Kettic.AspNet.ControlsControlItemCollection
      Kettic.AspNet.ControlsKaxTrackBarItemCollection

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 KaxTrackBarItemCollection : ControlItemCollection

The KaxTrackBarItemCollection type exposes the following members.

Constructors
  NameDescription
Public methodKaxTrackBarItemCollection
Initializes a new instance of the KaxTrackBarItemCollection class.
Top
Methods
  NameDescription
Public methodAdd
Appends the specified KaxTrackBarItem object to the end of the current KaxTrackBarItemCollection.
Public methodAddRange
Appends the specified array of KaxTrackBarItem objects to the end of the current KaxTrackBarItemCollection.
Public methodContains
Determines whether the specified KaxTrackBarItem object is in the current KaxTrackBarItemCollection.
Public methodFindItemByAttribute
Searches the items in the collection for a KaxTrackBarItem which contains the specified attribute and attribute value.
Public methodFindItemByText
Finds the first KaxTrackBarItem with Text that matches the given text value.
Public methodFindItemByValue
Finds the first KaxTrackBarItem with Value that matches the given value.
Public methodIndexOf
Determines the index of the specified KaxTrackBarItem object in the collection.
Public methodInsert
Inserts the specified KaxTrackBarItem object in the current KaxTrackBarItemCollection at the specified index location.
Public methodRemove(Int32)
Removes the specified KaxTrackBarItem object from the current KaxTrackBarItemCollection.
Public methodRemove(KaxTrackBarItem)
Removes the specified KaxTrackBarItem object from the current KaxTrackBarItemCollection.
Top
Properties
  NameDescription
Public propertyItem
Gets the KaxTrackBarItem object at the specified index in the current KaxTrackBarItemCollection.
Top
Remarks
The KaxTrackBarItemCollection class represents a collection of KaxTrackBarItem objects.
  • Use the indexer to programmatically retrieve a single KaxTrackBarItem from the collection, using array notation.
  • Use the Count property to determine the total number of trackbar 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