Description
This enum is used by the RibbonGallery control to determine the display mode of the gallery.
Visual Basic
Public Enum GalleryDisplayMode Window ComboBox LargeButton StandardButton End Enum
C#
public enum GalleryDisplayMode { Window, ComboBox, LargeButton, StandardButton }
Members
Members | Description |
---|---|
Window | The gallery control is shown expanded in the panel, and items in the gallery can be directly viewed and selected. |
ComboBox | The gallery control is displayed in the panel as a combo box; when clicked, the full gallery is displayed. |
LargeButton | The gallery control is displayed in the panel as a large button; when clicked, the full gallery is displayed. |
StandardButton | The gallery control is displayed in the panel as a standard size button; when clicked, the full gallery is displayed. |