aspnet-devexpress-dot-web-555b7cef.md
A tabbed layout group in the ASPxFormLayout control.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class TabbedLayoutGroup :
LayoutGroupBase
Public Class TabbedLayoutGroup
Inherits LayoutGroupBase
Use the TabbedLayoutGroup class to create an individual tabbed layout group in the ASPxFormLayout control.
Note
The FindControl method is not in effect for the control’s tabbed layout group.
<dx:ASPxFormLayout runat="server" ...>
<Items>
<dx:TabbedLayoutGroup Caption="TabbedGroup" Width="100%" TabPosition="Bottom">
<Items>
<dx:LayoutGroup >
<SettingsItemCaptions Location="Top" />
<Items>
<dx:LayoutItem Caption="Email" RequiredMarkDisplayMode="Required">
<LayoutItemNestedControlCollection>
<dx:LayoutItemNestedControlContainer>
<dx:ASPxTextBox ID="emailTextBox" .../>
</dx:LayoutItemNestedControlContainer>
</LayoutItemNestedControlCollection>
</dx:LayoutItem>
...
</Items>
</dx:LayoutGroup>
...
</Items>
</dx:TabbedLayoutGroup>
</Items>
...
</dx:ASPxFormLayout>
Show 17 items
Object StateManager CollectionItem LayoutItemBase LayoutGroupBase TabbedLayoutGroup GridTabbedLayoutGroup
BootstrapGridViewTabbedLayoutGroup
BootstrapCardViewTabbedLayoutGroup
MVCxGridViewTabbedLayoutGroup<ModelType>
MVCxTabbedFormLayoutGroup<ModelType>
See Also