Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    DropDownTogglePosition Enum

    Lists drop-down toggle positions.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    #Declaration

    C#
    public enum DropDownTogglePosition

    #Members

    Name Description
    Right

    Displays the drop-down toggle at the right edge of the target element.

    Left

    Displays the drop-down toggle at the left edge of the target element.

    #Related API Members

    The following properties accept/return DropDownTogglePosition values:

    #Remarks

    Use the DropDownTogglePosition property to specify the toggle position relative to the main split button.

    DxSplitButton - Change Toggle Position

    Razor
    <DxSplitButton Text="Blazor Components"
                   RenderStyleMode="ButtonRenderStyleMode.Outline"
                   DropDownTogglePosition="DropDownTogglePosition.Left">
        <Items>
            <DxDropDownButtonItem Text="Documentation"
                                  NavigateUrl="https://docs.devexpress.com/Blazor/400725/blazor-components" />
            <DxDropDownButtonItem Text="Demos"
                                  NavigateUrl="https://demos.devexpress.com/blazor/" />
        </Items>
    </DxSplitButton>
    
    See Also