Skip to main content
All docs
V25.1
  • DxSplitter.SeparatorSize Property

    Specifies the thickness of pane separators.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public string SeparatorSize { get; set; }

    Property Value

    Type Description
    String

    The size, in CSS units.

    Remarks

    The SeparatorSize property specifies the width of vertical separators and the height of horizontal separators.

    <DxSplitter CssClass="colored-splitter"
                SeparatorSize="16px" 
                Height="150px" 
                Width="100%">
        <Panes>
            <DxSplitterPane>Pane 1</DxSplitterPane>
            <DxSplitterPane>Pane 2</DxSplitterPane>
            <DxSplitterPane>Pane 3</DxSplitterPane>
        </Panes>
    </DxSplitter>
    

    Splitter component

    See Also