ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroupLabelImage.ViewDrawRibbonGroupLabelImage C# (CSharp) Méthode

ViewDrawRibbonGroupLabelImage() public méthode

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.
Résultat System
        public ViewDrawRibbonGroupLabelImage(KryptonRibbon ribbon,
                                             KryptonRibbonGroupLabel ribbonLabel,
                                             bool large)
            : base(ribbon)
        {
            Debug.Assert(ribbonLabel != null);

            _ribbonLabel = ribbonLabel;
            _large = large;
        }
ViewDrawRibbonGroupLabelImage