ComponentFactory.Krypton.Ribbon.ViewDrawRibbonTab.GetShortText C# (CSharp) Method

GetShortText() public method

Gets the short text used as the main ribbon title.
public GetShortText ( ) : string
return string
        public string GetShortText()
        {
            // We only use the ribbon tab text if we have a ribbon tab to
            // reference and the text is not zero length. We try and prevent
            // an empty string because it makes the tab useless!
            if ((_ribbonTab != null) && (_ribbonTab.Text.Length > 0))
                return _ribbonTab.Text;

            return _empty;
        }