aspnet-devexpress-dot-web-dot-aspxtabcontrolbase-b670a73b.md
Gets or sets a template, used for rendering the space after tabs.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(null)]
public virtual ITemplate SpaceAfterTabsTemplate { get; set; }
<DefaultValue(Nothing)>
Public Overridable Property SpaceAfterTabsTemplate As ITemplate
| Type | Default | Description |
|---|---|---|
| ITemplate | null |
An object supporting the System.Web.UI.ITemplate interface which contains the template.
|
Use the SpaceAfterTabsTemplate property to create a template that defines the manner in which the space after tabs is rendered.
Note
If the ASPxTabControlBase.EnableTabScrolling option is enabled, the template specified in SpaceAfterTabsTemplate is not in effect.
Note that any style settings specified using the ASPxTabControlBase.SpaceAfterTabsTemplateStyle property is in effect for the template contents.
Note
Once a template defined with the SpaceAfterTabsTemplate property is created in a tab control, it is instantiated in a container object of the TemplateContainerBase type. This container object exposes a set of specific properties to which the template’s child controls can be bound.
See Also