API Reference
Interface
IValueTransformer
Transforms a raw cell value into a rendered value. Returning true indicates the transformer handled the value and produced a replacement. Returning false leaves the value unchanged for subsequent transformers.
Methods
public abstract Boolean TryTransform(Object value, out Object rendered) #Returns:
BooleanAttempts to transform the input value.
Parameters
- value System.Object
- Original value, may be null.
- rendered System.Object@
- Transformed value produced by this transformer when the method returns true.
Returns
True if the transformer handled the value, otherwise false.