TdxRibbonBackstageViewGalleryControlOptionsViewItem.PinMode Property
Switches the use of pinned items.
Declaration
property PinMode: TdxRibbonBackstageViewGalleryItemPinMode read; write; default bgipmNone;
Property Value
Type | Default |
---|---|
TdxRibbonBackstageViewGalleryItemPinMode | bgipmNone |
Remarks
Options include:
Value | Description |
---|---|
bgipmNone | No pinned items. |
bgipmTag | Enables pinned items. Pins are displayed as tags. Unlike buttons (see bgipmButton), tags are painted above items, so they do not require additional item space, and they cannot be focused using the keyboard. |
bgipmButton | Enables pinned items. Pins are displayed as buttons. Unlike tags (see bgipmTag), buttons occupy some of the item space and can be focused using the keyboard. |
You can hide pins within individual gallery items via an item’s AllowChangePinnedState property. To respond to clicking pins, handle the Backstage View gallery’s OnItemPinClick event.
The default value of the PinMode property is bgipmNone.
See Also