public bool ShowText {get; set;}
'Declaration
Public Property ShowText As Boolean
'使用法
Dim instance As ProgressCellType
Dim value As Boolean
instance.ShowText = value
value = instance.ShowText
プロパティ値
Boolean:プログレス インジケータにパーセント値をテキストとして表示する場合は
True、それ以外の場合は
False
次のサンプルコードは、進行状況インジケータ型セルを作成し、いくつかのプロパティを設定します。
FarPoint.Win.Spread.CellType.ProgressCellType progress =new FarPoint.Win.Spread.CellType.ProgressCellType();
progress.Style = FarPoint.Win.ProgressStyle.Bars;
progress.FillColor = Color.Coral;
progress.FillTextColor = Color.DarkGreen;
progress.Minimum = 0;
progress.Maximum = 100;
progress.Orientation = FarPoint.Win.ProgressOrientation.LeftToRight;
fpSpread1.Sheets[0].Cells[0, 0].CellType = progress;
fpSpread1.Sheets[0].Cells[0, 0].Value = "50";
Dim progress As New FarPoint.Win.Spread.CellType.ProgressCellType()
progress.Style = FarPoint.Win.ProgressStyle.Bars
progress.FillColor = Color.Coral
progress.FillTextColor = Color.DarkGreen
progress.Minimum = 0
progress.Maximum = 100
progress.Orientation = FarPoint.Win.ProgressOrientation.LeftToRight
FpSpread1.Sheets(0).Cells(0, 0).CellType = progress
FpSpread1.Sheets(0).Cells(0, 0).Value = "50"