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

ViewDrawRibbonGroupLabelImage() public method

Initialize a new instance of the ViewDrawRibbonGroupLabelImage class.
public ViewDrawRibbonGroupLabelImage ( KryptonRibbon ribbon, KryptonRibbonGroupLabel ribbonLabel, bool large ) : System
ribbon KryptonRibbon Reference to owning ribbon control.
ribbonLabel KryptonRibbonGroupLabel Reference to ribbon group label definition.
large bool Show the large image.
return System
        public ViewDrawRibbonGroupLabelImage(KryptonRibbon ribbon,
                                             KryptonRibbonGroupLabel ribbonLabel,
                                             bool large)
            : base(ribbon)
        {
            Debug.Assert(ribbonLabel != null);

            _ribbonLabel = ribbonLabel;
            _large = large;
        }
ViewDrawRibbonGroupLabelImage