BetweenValuesConditionalFormattingRule Constructor(Boolean,Object,Boolean,Object,Boolean)
In This Topic
Initializes a new instance of the
BetweenValuesConditionalFormattingRule class.
Syntax
'Declaration
Public Function New( _
ByVal As Boolean, _
ByVal As Object, _
ByVal As Boolean, _
ByVal As Object, _
ByVal As Boolean _
)
'Usage
Dim isNotBetween As Boolean
Dim firstValue As Object
Dim isFirstFormula As Boolean
Dim secondValue As Object
Dim isSecondFormula As Boolean
Dim instance As New BetweenValuesConditionalFormattingRule(isNotBetween, firstValue, isFirstFormula, secondValue, isSecondFormula)
public BetweenValuesConditionalFormattingRule(
bool ,
object ,
bool ,
object ,
bool
)
Parameters
- isNotBetween
- if set to
true
is not between. - firstValue
- The first value
- isFirstFormula
- if set to
true
, indicates that the firstValue parameter is the first formula - secondValue
- The second value
- isSecondFormula
- if set to
true
, indicates that the secondValue parameter is the second formula
Example
This example creates a rule.
See Also