ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupTripleCollectionEditor.CreateNewItemTypes C# (CSharp) Method

CreateNewItemTypes() protected method

Gets the data types that this collection editor can contain.
protected CreateNewItemTypes ( ) : System.Type[]
return System.Type[]
        protected override Type[] CreateNewItemTypes()
        {
            return new Type[] { typeof(KryptonRibbonGroupButton),
                                typeof(KryptonRibbonGroupColorButton),
                                typeof(KryptonRibbonGroupCheckBox),
                                typeof(KryptonRibbonGroupComboBox),
                                typeof(KryptonRibbonGroupCustomControl),
                                typeof(KryptonRibbonGroupDateTimePicker),
                                typeof(KryptonRibbonGroupLabel),
                                typeof(KryptonRibbonGroupRadioButton),
                                typeof(KryptonRibbonGroupRichTextBox),
                                typeof(KryptonRibbonGroupTextBox),
                                typeof(KryptonRibbonGroupMaskedTextBox)};
        }