Back to Devexpress

DxSplitter.Width Property

blazor-devexpress-dot-blazor-dot-dxsplitter-1a0d1999.md

latest1.5 KB
Original Source

DxSplitter.Width Property

Specifies the splitter width.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[Parameter]
public string Width { get; set; }

Property Value

TypeDescription
String

The width, in CSS units.

|

Remarks

Use the Height and Width properties to specify the size of the message box.

razor
<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>
css
.colored-splitter{
    font-style: italic;
    background-color: #e9d4ff;
}

Run Demo

See Also

DxSplitter Class

DxSplitter Members

DevExpress.Blazor Namespace