Skip to main content
A newer version of this page is available. .

DxFormLayoutItem Class

Represents a layout item that can display a nested control.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public class DxFormLayoutItem :
    ComponentBase,
    IFormLayoutItem,
    IDisposable,
    IFieldNameAccessor

Remarks

You can place layout items within a group (DxFormLayoutGroup) or in the root of the <DxFormLayout> component.

<DxFormLayout>
    <DxFormLayoutGroup Caption="Personal Information">
        <DxFormLayoutItem Caption="First Name:" >
            ...
        </DxFormLayoutItem>
    </DxFormLayoutGroup>
    ...
    <DxFormLayoutItem Caption="Position:" >
        ...
    </DxFormLayoutItem>
</DxFormLayout>

Run Demo Watch Video

Inheritance

Object
ComponentBase
DxFormLayoutItem
See Also