Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxRibbonBackstageViewGalleryControlOptionsViewItem.PinMode Property

Switches the use of pinned items.

#Declaration

Delphi
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