Autodesk.AutoCAD.Customization Namespace > RibbonButtonStyle Enumeration
Autodesk.AutoCAD.Customization.RibbonButtonStyle Enumeration   
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
  LargeWithHorizontalText = 1
  LargeWithoutText = 4
  LargeWithText = 0
  SmallWithoutText = 3
  SmallWithText = 2
End Enum
Members
Members 
Description 
LargeWithHorizontalText = 1 
Displays a large button, with an icon and text. The text will be horizontally oriented. 
LargeWithoutText = 4 
Displays a large button, with an icon without text. 
LargeWithText = 0 
Displays a large button, with an icon and text. 
SmallWithoutText = 3 
Displays a small button, with an icon only. 
SmallWithText = 2 
Displays a small button, with an icon and text. 
   Comments?