ComponentFactory.Krypton.Toolkit.ButtonValues.GetLongText C# (CSharp) Method

GetLongText() public method

Gets the content long text.
public GetLongText ( ) : string
return string
        public virtual string GetLongText()
        {
            return ExtraText;
        }

Usage Example

Beispiel #1
0
 /// <summary>
 /// Gets the content long text.
 /// </summary>
 /// <returns>String value.</returns>
 public string GetLongText()
 {
     if (KryptonCommand != null)
     {
         return(KryptonCommand.ExtraText);
     }
     else
     {
         return(_buttonValues.GetLongText());
     }
 }