DropDownTogglePosition Enum
Lists drop-down toggle positions.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
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 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