Autodesk.AutoCAD.Customization Namespace > GalleryDisplayMode Enumeration
Autodesk.AutoCAD.Customization.GalleryDisplayMode Enumeration   
Description

This enum is used by the RibbonGallery control to determine the display mode of the gallery.

Visual Basic
Public Enum GalleryDisplayMode
  ComboBox = 1
  LargeButton = 2
  StandardButton = 3
  Window = 0
End Enum
C#
public enum GalleryDisplayMode {
  ComboBox = 1,
  LargeButton = 2,
  StandardButton = 3,
  Window = 0
}
Members
Members 
Description 
ComboBox = 1 
The gallery control is displayed in the panel as a combo box; when clicked, the full gallery is displayed. 
LargeButton = 2 
The gallery control is displayed in the panel as a large button; when clicked, the full gallery is displayed. 
StandardButton = 3 
The gallery control is displayed in the panel as a standard size button; when clicked, the full gallery is displayed. 
Window = 0 
The gallery control is shown expanded in the panel, and items in the gallery can be directly viewed and selected. 
   Comments?