
| KaxToolBarItem Class | 
 Inheritance Hierarchy
Inheritance Hierarchy
        Namespace: Kettic.AspNet.Controls
 Syntax
SyntaxThe KaxToolBarItem type exposes the following members.
 Properties
Properties| Name | Description | |
|---|---|---|
|   | ClickedCssClass | 
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolbar item is
            clicked.
             | 
|   | ClickedImageUrl | 
            Gets or sets the path to an image to display for the item when the user clicks it.
             | 
|  | DisabledCssClass | 
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolbar item is
            disabled.
             | 
|   | DisabledImageUrl | 
            Gets or sets the path to an image to display when the item is disabled.
             | 
|   | FocusedCssClass | 
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolBar item is
            focused after tabbing to it, or by using its AccessKey
             | 
|   | FocusedImageUrl | 
            Gets or sets the path to an image to display when the user focuses the
            item either by tabbing to it or by using the AccessKey
             | 
|  | HoveredCssClass | 
            Gets or sets the Cascading Style Sheet (CSS) class applied when the user moves the mouse
            over the toolbar item.
             | 
|   | HoveredImageUrl | 
            Gets or sets the path to an image to display when the user moves the
            mouse over the item.
             | 
|   | ImagePosition | 
            Gets or sets the position of the item image according to the item text.
             | 
|   | ImageUrl | Gets or sets the path to an image to display for the item. | 
|  | OuterCssClass | 
            	Gets or sets the Cascading Style Sheet (CSS) class applied on the outmost element (<LI>).
             | 
|  | Text | 
            	Gets or sets the text displayed for the current item.
            (Overrides ControlItemText.) | 
|  | ToolBar | Gets the KaxToolBar instance which contains the item. | 
 Remarks
RemarksThe KaxToolBar control is made up of a list of toolbar items represented by KaxToolBarItem objects (KaxToolBarButton, KaxToolBarDropDown, KaxToolBarSplitButton). All toolbar items are stored in the Items collection of the toolbar. You can access the toolbar to which the item belongs by using the ToolBar property.
To create the toolbar items for a KaxToolBar control, use one of the following methods:
Each toolbar item has a Text property. The Button items (KaxToolBarButton and KaxToolBarSplitButton) have a Value property. The value of the Text property is displayed in the KaxToolBar control, while the Value property is used to store any additional data about the toolbar item.
 See Also
See Also