FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > ProgressCellType クラス : TextStyle プロパティ |
'Declaration Public Property TextStyle As ProgressTextStyle
'使用法 Dim instance As ProgressCellType Dim value As ProgressTextStyle instance.TextStyle = value value = instance.TextStyle
public ProgressTextStyle TextStyle {get; set;}
FarPoint.Win.Spread.CellType.ProgressCellType progress = new FarPoint.Win.Spread.CellType.ProgressCellType(); progress.TextStyle =FarPoint.Win.ProgressTextStyle.PercentRemaining; progress.Text ="This is the percent remaining."; fpSpread1.Sheets[0].Cells[0, 0].CellType = progress;
Dim progress As New FarPoint.Win.Spread.CellType.ProgressCellType progress.TextStyle = FarPoint.Win.ProgressTextStyle.PercentRemaining progress.Text ="This is the percent remaining." FpSpread1.Sheets(0).Cells(0, 0).CellType = progress