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

GalleryItem.Value Property

Gets or sets the GalleryItem‘s value.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Data")]
public virtual object Value { get; set; }

#Property Value

Type Description
Object

An Object that is the GalleryItem‘s value.

#Remarks

The GalleryItem.Value property affects how a PopupGalleryEdit control’s edit value is formed when the RepositoryItemPopupGalleryEdit.EditValueType property is set to CSV.

In CSV mode, the editor’s edit value is a string concatenating selected gallery item values (each gallery item value is converted to a string during concatenation). Gallery item values are separated in the result string by a specific separator (RepositoryItemPopupGalleryEdit.SeparatorChar) and a space character.

To enable multiple item selection, see BaseGallery.ItemCheckMode.

To access selected items, use PopupGalleryEdit.CheckedItems or BaseGallery.GetCheckedItems.

See Also