FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > ProgressCellType クラス : Minimum プロパティ |
'Declaration Public Property Minimum As Integer
'使用法 Dim instance As ProgressCellType Dim value As Integer instance.Minimum = value value = instance.Minimum
public int Minimum {get; set;}
次のサンプルコードは、進行状況インジケータ型セルを作成し、いくつかのプロパティを設定します。
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"