GrapeCity SPREAD for Windows Forms 11.0J
TextConditionalFormattingRule コンストラクタ(TextConditionOperator,String,Boolean,Boolean)


演算子。
テキスト。
true に設定した場合、テキストパラメーターは数式を表します。それ以外の場合は、通常のテキスト値を表します。
カスタム名によって参照された式が制限されないようにする場合はtrue、それ以外の場合はfalse
TextConditionalFormattingRule クラスの新しいインスタンスを初期化します。
構文
'Declaration
 
Public Function New( _
   ByVal op As TextConditionOperator, _
   ByVal text As String, _
   ByVal isFormula As Boolean, _
   ByVal suppressCustomName As Boolean _
)
'使用法
 
Dim op As TextConditionOperator
Dim text As String
Dim isFormula As Boolean
Dim suppressCustomName As Boolean
 
Dim instance As New TextConditionalFormattingRule(op, text, isFormula, suppressCustomName)
public TextConditionalFormattingRule( 
   TextConditionOperator op,
   string text,
   bool isFormula,
   bool suppressCustomName
)

パラメータ

op
演算子。
text
テキスト。
isFormula
true に設定した場合、テキストパラメーターは数式を表します。それ以外の場合は、通常のテキスト値を表します。
suppressCustomName
カスタム名によって参照された式が制限されないようにする場合はtrue、それ以外の場合はfalse
次のサンプルコードは、テキストルールを作成します。
FarPoint.Win.Spread.TextConditionalFormattingRule text = new FarPoint.Win.Spread.TextConditionalFormattingRule(FarPoint.Win.Spread.TextConditionOperator.Contains, "=C1", true, false);
// Cell (1,1) must contain the text you type in C1            
text.BackColor = Color.Red;
fpSpread1.ActiveSheet.SetConditionalFormatting(1, 1, text);
Dim Text As New FarPoint.Win.Spread.TextConditionalFormattingRule(FarPoint.Win.Spread.TextConditionOperator.Contains, "=C1", True, False)
' Cell (1,1) must contain the text you type in C1            
Text.BackColor = Color.Red
FpSpread1.ActiveSheet.SetConditionalFormatting(1, 1, Text)
参照

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

 

 


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