ComponentFactory.Krypton.Toolkit.LabelValues.GetShortText C# (CSharp) Method

GetShortText() public method

Gets the content short text.
public GetShortText ( ) : string
return string
        public string GetShortText()
        {
            return Text;
        }

Usage Example

Beispiel #1
0
 /// <summary>
 /// Gets the content short text.
 /// </summary>
 /// <returns>String value.</returns>
 public string GetShortText()
 {
     if (KryptonCommand != null)
     {
         return(KryptonCommand.Text);
     }
     else
     {
         return(_labelValues.GetShortText());
     }
 }