GrapeCity SPREAD for Windows Forms 11.0J
ThreeColorScaleConditionalFormattingRule コンストラクタ(ConditionalFormattingColorValue,ConditionalFormattingColorValue,ConditionalFormattingColorValue)


最小値。注意: 最小値は、そのTypeプロパティがMin、Number、Percent、Formula、PecentileのいずれかであるConditionalFormattingColorValueオブジェクトのみを受け入れます。
中間値。注意: 中間値は、そのTypeプロパティがNumber、Percent、Formula、PecentileのいずれかであるConditionalFormattingColorValueオブジェクトのみを受け入れます。
最大値。注意: 最大値は、そのTypeプロパティがMax、Number、Percent、Formula、PecentileのいずれかであるConditionalFormattingColorValueオブジェクトのみを受け入れます。
ThreeColorScaleConditionalFormattingRule クラスの新しいインスタンスを初期化します。
構文
'Declaration
 
Public Function New( _
   ByVal minValue As ConditionalFormattingColorValue, _
   ByVal midValue As ConditionalFormattingColorValue, _
   ByVal maxValue As ConditionalFormattingColorValue _
)
'使用法
 
Dim minValue As ConditionalFormattingColorValue
Dim midValue As ConditionalFormattingColorValue
Dim maxValue As ConditionalFormattingColorValue
 
Dim instance As New ThreeColorScaleConditionalFormattingRule(minValue, midValue, maxValue)

パラメータ

minValue
最小値。注意: 最小値は、そのTypeプロパティがMin、Number、Percent、Formula、PecentileのいずれかであるConditionalFormattingColorValueオブジェクトのみを受け入れます。
midValue
中間値。注意: 中間値は、そのTypeプロパティがNumber、Percent、Formula、PecentileのいずれかであるConditionalFormattingColorValueオブジェクトのみを受け入れます。
maxValue
最大値。注意: 最大値は、そのTypeプロパティがMax、Number、Percent、Formula、PecentileのいずれかであるConditionalFormattingColorValueオブジェクトのみを受け入れます。
次のサンプルコードは、カラースケールルールを作成します。
fpSpread1.Sheets[0].Cells[0, 0].Value = 30;
fpSpread1.Sheets[0].Cells[1, 0].Value = 20;
fpSpread1.Sheets[0].Cells[1, 1].Value = 10;
fpSpread1.Sheets[0].Cells[0, 2].Value = 15;
FarPoint.Win.Spread.Model.CellRange celRange1 = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3);
FarPoint.Win.Spread.ThreeColorScaleConditionalFormattingRule rule = new FarPoint.Win.Spread.ThreeColorScaleConditionalFormattingRule(new FarPoint.Win.Spread.ConditionalFormattingColorValue(Color.Aqua, 10, FarPoint.Win.Spread.ConditionalFormattingValueType.Number), new FarPoint.Win.Spread.ConditionalFormattingColorValue(Color.BlueViolet, 20, FarPoint.Win.Spread.ConditionalFormattingValueType.Number), new FarPoint.Win.Spread.ConditionalFormattingColorValue(Color.Green, 50, FarPoint.Win.Spread.ConditionalFormattingValueType.Number));
fpSpread1.Sheets[0].SetConditionalFormatting(new FarPoint.Win.Spread.Model.CellRange[] { celRange1 }, rule);
FpSpread1.Sheets(0).Cells(0, 0).Value = 30
FpSpread1.Sheets(0).Cells(1, 0).Value = 20
FpSpread1.Sheets(0).Cells(1, 1).Value = 10
FpSpread1.Sheets(0).Cells(0, 2).Value = 15
Dim celRange1 As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3)
Dim Rule As New FarPoint.Win.Spread.ThreeColorScaleConditionalFormattingRule(New FarPoint.Win.Spread.ConditionalFormattingColorValue(Color.Aqua, 10, FarPoint.Win.Spread.ConditionalFormattingValueType.Number), New FarPoint.Win.Spread.ConditionalFormattingColorValue(Color.BlueViolet, 20, FarPoint.Win.Spread.ConditionalFormattingValueType.Number), New FarPoint.Win.Spread.ConditionalFormattingColorValue(Color.Green, 50, FarPoint.Win.Spread.ConditionalFormattingValueType.Number))
FpSpread1.Sheets(0).SetConditionalFormatting(New FarPoint.Win.Spread.Model.CellRange() {celRange1}, Rule)
参照

ThreeColorScaleConditionalFormattingRule クラス
ThreeColorScaleConditionalFormattingRule メンバ
オーバーロード一覧

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.