ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupLines.KryptonRibbonGroupLines C# (CSharp) Method

KryptonRibbonGroupLines() public method

Initialise a new instance of the KryptonRibbonGroupLines class.
public KryptonRibbonGroupLines ( ) : System
return System
        public KryptonRibbonGroupLines()
        {
            // Default fields
            _visible = true;
            _itemSizeMax = GroupItemSize.Large;
            _itemSizeMin = GroupItemSize.Small;
            _itemSizeCurrent = GroupItemSize.Large;

            // Create collection for holding triple items
            _ribbonLineItems = new KryptonRibbonGroupLinesCollection();
            _ribbonLineItems.Clearing += new EventHandler(OnRibbonGroupLineClearing);
            _ribbonLineItems.Cleared += new EventHandler(OnRibbonGroupLineCleared);
            _ribbonLineItems.Inserted += new TypedHandler<KryptonRibbonGroupItem>(OnRibbonGroupLineInserted);
            _ribbonLineItems.Removed += new TypedHandler<KryptonRibbonGroupItem>(OnRibbonGroupLineRemoved);
        }