PowerTools MultiRow for Windows Forms 8.0J
プログレスバー内テキストの非表示

RadioGroupCellに表示される50%などのテキストを非表示にするには、ShowTextプロパティにFalseを設定します。
サンプルコード
次のコードは、プログレスバー内のテキストを非表示にします。

Imports GrapeCity.Win.MultiRow

' セル型の作成
Dim ProgressBarCell1 As New ProgressBarCell()
ProgressBarCell1.Name = "ProgressBarCell1"
ProgressBarCell1.ShowText = False

' MultiRowの設定
GcMultiRow1.Template = Template.CreateGridTemplate(New Cell() {ProgressBarCell1})
GcMultiRow1.SetValue(0, 0, 50)
using GrapeCity.Win.MultiRow;

// セル型の作成
ProgressBarCell progressBarCell1 = new ProgressBarCell();
progressBarCell1.Name = "progressBarCell1";
progressBarCell1.ShowText = false;

// MultiRowの設定
gcMultiRow1.Template = Template.CreateGridTemplate(new Cell[] { progressBarCell1 });
gcMultiRow1.SetValue(0, 0, 50);
   
参照

 

 


© 2008-2015 GrapeCity inc. All rights reserved.