[]
        
(Showing Draft Content)

GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcComboBox.Items

Items Property

Items

Gets the collection used to generate the content of the GcComboBox.

Declaration
public ObservableCollection<object> Items { get; }
Public ReadOnly Property Items As ObservableCollection(Of Object)
Remarks

You can add items to an GcComboBox by adding items to the Items property or by binding the ItemsSource property to a data collection. You can add objects of different types to Items. If ItemsSource is not null, the items in the items property are read-only. You cannot add an object or change the objects in the Items property.

Examples

The following code example demonstrates how to use Items property.