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

ViewDrawRibbonGroupButtonImage() public method

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

            _ribbonButton = ribbonButton;
            _large = large;
        }
ViewDrawRibbonGroupButtonImage