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

GetShortText() public méthode

Gets the short text used as the main ribbon title.
public GetShortText ( ) : string
Résultat string
        public string GetShortText()
        {
            if (_firstText)
                return _ribbonGallery.TextLine1;
            else if (!string.IsNullOrEmpty(_ribbonGallery.TextLine2))
                return _ribbonGallery.TextLine2;
            else
                return " ";
        }