blazor-devexpress-dot-blazor-dot-dxribbonitem.md
Specifies whether the drop-down button item should be split into two buttons.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(false)]
[Parameter]
public bool SplitDropDownButton { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to split a drop-down item into two buttons; otherwise, false.
|
A ribbon item containing other items displays a drop-down arrow. When a user clicks the item, the ribbon displays a drop-down window and fires the Click event.
Set the SplitDropDownButton property to true to split the item into two areas: the main action button and the drop-down arrow.
...
<DxRibbonItem Text="Paste"
IconCssClass="rb-icon rb-icon-paste"
SplitDropDownButton="true" >
<DxRibbonItem Text="Copy" />
<DxRibbonItem Text="Cut" />
</DxRibbonItem>
...
See Also