cadencii.ProgressBarWithLabelUi.getText C# (CSharp) Method

getText() public method

public getText ( ) : string
return string
        public string getText()
        {
            return label1.Text;
        }

Usage Example

 /// <summary>
 /// ラベルのテキストを取得します
 /// </summary>
 /// <returns>ラベルのテキスト</returns>
 public string getText()
 {
     if (ptrUi == null)
     {
         return("");
     }
     return(ptrUi.getText());
 }