ResultConverter Property
See Also 
Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid Namespace > StatCell Class : ResultConverter Property

Gets or sets the converter that will be used to convert the content of a StatCell.

Syntax

Visual Basic (Declaration) 
Public Property ResultConverter As IValueConverter
C# 
public IValueConverter ResultConverter {get; set;}

Return Value

A reference to an IValueConverter that will be used to convert the content of a StatCell. By default, a StatResultConverter that can be used to format the result of a statistical function, as well as display a user-friendly message when an exception occurs within the function during the calculation of its result.

Remarks

The messages returned by a StatResultConverter when an exception occurs during the calculation of a statistical function's result depend on the type of the exception that was thrown. The following table provides a list of exceptions for which default messages have been provided: 

Exception Default message
DivideByZeroException #DIV/0#
Exception #[Exception.Message]#
InvalidSourcePropertyNameException #[InvalidSourcePropertyNameException.SourcePropertyName]#
InvalidValueException #VALUE#
OverflowException #OVER#

Requirements

Supported Frameworks: Microsoft .NET Framework version 3.5

See Also