FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > TextConditionalFormattingRule クラス > TextConditionalFormattingRule コンストラクタ : TextConditionalFormattingRule コンストラクタ(TextConditionOperator,String,Boolean,Boolean) |
true
に設定した場合、テキストパラメーターは数式を表します。それ以外の場合は、通常のテキスト値を表します。
true
、それ以外の場合はfalse
'宣言
Public Function New( _ ByVal op As TextConditionOperator, _ ByVal text As String, _ ByVal isFormula As Boolean, _ ByVal suppressCustomName As Boolean _ )
public TextConditionalFormattingRule( TextConditionOperator op, string text, bool isFormula, bool suppressCustomName )
true
に設定した場合、テキストパラメーターは数式を表します。それ以外の場合は、通常のテキスト値を表します。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)