Description
This enum sets the display mode for the button to display: a large icon and text, a small icon and text, or a small icon without text.
Visual Basic
Public Enum RibbonButtonStyle LargeWithText = 0 LargeWithHorizontalText = 1 SmallWithText = 2 SmallWithoutText = 3 LargeWithoutText = 4 End Enum
Members
Members | Description |
---|---|
LargeWithText = 0 | Displays a large button, with an icon and text. |
LargeWithHorizontalText = 1 | Displays a large button, with an icon and text. The text will be horizontally oriented. |
SmallWithText = 2 | Displays a small button, with an icon and text. |
SmallWithoutText = 3 | Displays a small button, with an icon only. |
LargeWithoutText = 4 | Displays a large button, with an icon without text. |