Description
Enum of possible values for split button behavior.
Visual Basic
Public Enum RibbonSplitButtonBehavior DropDownFollow = 1 DropDownNoFollow = 2 SplitFollow = 3 SplitFollowStaticText = 5 SplitNoFollow = 4 End Enum
C#
public enum RibbonSplitButtonBehavior { DropDownFollow = 1, DropDownNoFollow = 2, SplitFollow = 3, SplitFollowStaticText = 5, SplitNoFollow = 4 }
Members
Members | Description |
---|---|
DropDownFollow = 1 | The split button operates as a drop-down menu, but displays the most recent user selection when in the collapsed state. Correlates to displayed value "Drop Down Menu with Recent". |
DropDownNoFollow = 2 | The split button operates as a drop-down menu, but always displays the first item in the list when in the collapsed state. Correlates to displayed value "Drop Down Menu". |
SplitFollow = 3 | The split button operates as a button and a drop down, and displays the most recent user selection when in the collapsed state. Correlates to displayed value "Split with Recent". |
SplitFollowStaticText = 5 | The split button operates as a button and a drop down, and displays the image of the most recent user selection when in the collapsed state. Correlates to displayed value "Split with recent (Static text)". |
SplitNoFollow = 4 | The split button operates as a button and a drop down, and displays the first item in the list when in the collapsed state. Correlates to displayed value "Split". |