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.
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
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.