[]
        
(Showing Draft Content)

FarPoint.Win.Spread.ConditionalStyleItem.Value1

Value1 Property

Value1

Gets or sets a value that indicates the first operation value when the operator needs several arguments.

Declaration
public object Value1 { get; set; }
Public Property Value1 As Object
Property Value
Type Description
object

A object that indicates the first operation value when the operator needs several arguments.

Remarks

If the Operator is a monadic operator, Value1 is used as the only operand. If the Operator is a dyadic operator, Value1 is used as the first operand and the Value2 property value is used as the second operand.

The following list lists all the monadic operators.

  • ConditionalStyleOperator.Equals
  • ConditionalStyleOperator.NotEquals
  • ConditionalStyleOperator.GreaterThan
  • ConditionalStyleOperator.LessThan
  • ConditionalStyleOperator.GreaterThanOrEquals
  • ConditionalStyleOperator.LessThanOrEquals
  • ConditionalStyleOperator.Contains
  • ConditionalStyleOperator.StartsWith
  • ConditionalStyleOperator.EndsWith
  • ConditionalStyleOperator.IsMatch
  • ConditionalStyleOperator.IsNotMatch

The following list lists all the dyadic operators.

  • ConditionalStyleOperator.Between
  • ConditionalStyleOperator.NotBetween
See Also