ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1ComboBox Class / SelectedItems Property



In This Topic
    SelectedItems Property (C1ComboBox)
    In This Topic
    Gets or set the list of items which are selected.
    Syntax
    'Declaration
     
    
    Public Property SelectedItems As ObservableCollection(Of Object)
    'Usage
     
    
    Dim instance As C1ComboBox
    Dim value As ObservableCollection(Of Object)
     
    instance.SelectedItems = value
     
    value = instance.SelectedItems
    public ObservableCollection<object> SelectedItems {get; set;}
    public:
    property ObservableCollection<Object^>^ SelectedItems {
       ObservableCollection<Object^>^ get();
       void set (    ObservableCollection<Object^>^ value);
    }
    See Also