Skip to main content
All docs
V26.1
  • DxFormLayoutTabPage.HeaderIconUrl Property

    Specifies the tab page header’s icon URL.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v26.1.dll

    Declaration

    [DefaultValue(null)]
    [Parameter]
    public string HeaderIconUrl { get; set; }

    Property Value

    Type Default Description
    String null

    A URL that poins to an icon.

    Remarks

    The following code snippet assigns icons to tab page headers using Icon Library APIs:

    Form Layout Tab with an Icon

    @using DevExpress.Images.Blazor
    
    <DxFormLayout>
        <DxFormLayoutTabPages>
            <DxFormLayoutTabPage HeaderIconUrl="@Icon.Info"
                                 Caption="Work Information" />
            <DxFormLayoutTabPage HeaderIconUrl="@Icon.BookInformation"
                                 Caption="Personal Information" />
        </DxFormLayoutTabPages>
    </DxFormLayout>
    

    Refer to the Icons help topic for additional information about icons in DevExpress Blazor components.

    See Also