Click or drag to resize
KaxTabCollection Class
A collection of KaxTab objects in a KaxTabControl control.
Inheritance Hierarchy
SystemObject
  System.Web.UIStateManagedCollection
    Kettic.AspNet.ControlsControlItemCollection
      Kettic.AspNet.ControlsKaxTabCollection

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 KaxTabCollection : ControlItemCollection, 
	IEnumerable<KaxTab>, IEnumerable

The KaxTabCollection type exposes the following members.

Constructors
  NameDescription
Public methodKaxTabCollection
Initializes a new instance of the KaxTabCollection class.
Top
Methods
  NameDescription
Public methodCode exampleAdd
Appends the specified KaxTab object to the end of the current KaxTabCollection.
Public methodCode exampleAddRange
Appends the specified array of KaxTab objects to the end of the current KaxTabCollection.
Public methodContains
Determines whether the specified KaxTab object is in the current KaxTabCollection.
Public methodCode exampleFindTab
Returns the first KaxTab that matches the conditions defined by the specified predicate. The predicate should returns a boolean value.
Public methodFindTabByText(String)
Searches the KaxTabControl control for the first KaxTab whose Text property is equal to the specified value.
Public methodFindTabByText(String, Boolean)
Searches the KaxTabControl control for the first KaxTab whose Text property is equal to the specified value.
Public methodFindTabByValue(String)
Searches the KaxTabControl control for the first KaxTab whose Value property is equal to the specified value.
Public methodFindTabByValue(String, Boolean)
Searches the KaxTabControl control for the first KaxTab whose Value property is equal to the specified value.
Public methodIndexOf
Determines the index of the specified KaxTab object in the collection.
Public methodInsert
Inserts the specified KaxTab object in the current KaxTabCollection at the specified index location.
Public methodRemove
Removes the specified KaxTab object from the current KaxTabCollection.
Public methodRemoveAt
Removes the KaxTab object at the specified index from the current KaxTabCollection.
Top
Properties
  NameDescription
Public propertyItem
Gets the KaxTab object at the specified index in the current KaxTabCollection.
Top
Remarks
The KaxTabCollection class represents a collection of KaxTab objects.
  • Use the indexer to programmatically retrieve a single KaxTab from the collection, using array notation.
  • Use the Count property to determine the total number of menu items in the collection.
  • Use the Add method to add tabs in the collection.
  • Use the Remove method to remove tabs from the collection.
See Also