Click or drag to resize
KaxTabTabTemplate Property
Gets or sets the template for displaying the tab.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public virtual ITemplate TabTemplate { get; set; }

Property Value

Type: ITemplate

An object implementing the ITemplateThe default value is a null reference (Nothing in Visual Basic), which indicates that this property is not set.

To specify common display for all tabs use the TabTemplate property of the KaxTabControl control.

Examples
The following example demonstrates how to customize the appearance of a specific tab using the TabTemplate property
<kettic:KaxTabControl ID="KaxTabControl1" runat="server">
  <Tabs>
    <kettic:KaxTab>
      <TabTemplate>
        Tab 1 <img src="Images/tabIcon.gif" alt="" />
      </TabTemplate>
    </kettic:KaxTab>
  </Tabs>
</kettic:KaxTabControl>
See Also