C# Class WinRTXamlToolkit.Controls.DataVisualization.Charting.DefinitionSeries.SelectionModeToSelectionEnabledConverter

Converts from a SeriesSelectionMode to a true/false value indicating whether selection is enabled.
Inheritance: IValueConverter
Mostrar archivo Open project: xyzzer/WinRTXamlToolkit

Public Methods

Method Description
Convert ( object value, Type targetType, object parameter, string language ) : object

Modifies the source data before passing it to the target for display in the UI.

ConvertBack ( object value, Type targetType, object parameter, string language ) : object

Modifies the target data before passing it to the source object. This method is called only in TwoWay bindings.

SelectionModeToSelectionEnabledConverter ( ) : System

Initializes a new instance of the SelectionModeToSelectionEnabledConverter class.

Method Details

Convert() public method

Modifies the source data before passing it to the target for display in the UI.
public Convert ( object value, Type targetType, object parameter, string language ) : object
value object The source data being passed to the target.
targetType System.Type The type of the target property, specified by a helper structure that wraps the type name.
parameter object An optional parameter to be used in the converter logic.
language string The language of the conversion.
return object

ConvertBack() public method

Modifies the target data before passing it to the source object. This method is called only in TwoWay bindings.
public ConvertBack ( object value, Type targetType, object parameter, string language ) : object
value object The target data being passed to the source..
targetType System.Type The type of the target property, specified by a helper structure that wraps the type name.
parameter object An optional parameter to be used in the converter logic.
language string The language of the conversion.
return object

SelectionModeToSelectionEnabledConverter() public method

Initializes a new instance of the SelectionModeToSelectionEnabledConverter class.
public SelectionModeToSelectionEnabledConverter ( ) : System
return System