cadencii.ProgressBarWithLabelUi.setText C# (CSharp) Method

setText() public method

public setText ( string value ) : void
value string
return void
        public void setText( string value )
        {
            label1.Text = value;
        }

Usage Example

 /// <summary>
 /// ラベルのテキストを設定します
 /// </summary>
 /// <param name="value">設定するテキスト</param>
 public void setText(string value)
 {
     if (ptrUi == null)
     {
         return;
     }
     ptrUi.setText(value);
 }