Description
This enum is used by the RibbonGallery to control the display mode.
Visual Basic
Public Enum GalleryDisplayMode Window ComboBox LargeButton StandardButton End Enum
C#
public enum GalleryDisplayMode { Window, ComboBox, LargeButton, StandardButton }
Members
| Members | Description |
|---|---|
| Window | Show the gallery in window mode. In this mode the gallery appears as a window containing multiple items in a single row with a vertical scrollbar. |
| ComboBox | Show the gallery in combo-box mode. In this mode the gallery appears as a combo box. Clicking on the button displays the drop-down list. |
| LargeButton | Show the gallery in large-button mode. In this mode the gallery appears as a large button. Clicking on the button displays the drop-down list. |
| StandardButton | Show the gallery in standard-button mode. In this mode the gallery appears as a standard button. Clicking on the button displays the drop-down list. |