[]
Create a conditional formatting value using the specified numeric value.
public static CfValue FromPrimitiveValue(double value, CfValueType type = CfValueType.Numeric)
Public Shared Function FromPrimitiveValue(value As Double, Optional type As CfValueType = CfValueType.Numeric) As CfValue
Type | Name | Description |
---|---|---|
double | value | A double value indicates the numeric value. |
CfValueType | type |
Type | Description |
---|---|
CfValue | A CfValue value represents the conditional formatting value. |
Create a conditional formatting value using the specified string value.
public static CfValue FromPrimitiveValue(string value)
Public Shared Function FromPrimitiveValue(value As String) As CfValue
Type | Name | Description |
---|---|---|
string | value | A double value indicates the string value. |
Type | Description |
---|---|
CfValue | A CfValue value represents the conditional formatting value. |