C# Class System.Waf.Presentation.Converters.StringFormatConverter

Inheritance: IValueConverter
Mostra file Open project: jbe2277/waf

Public Methods

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

Converts an object into a formatted string.

ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
ConvertBack ( object value, Type targetType, object parameter, string culture ) : object

This method is not supported and throws an exception when it is called.

ConvertBack ( object value, Type targetTypes, object parameter, CultureInfo culture ) : object[]

This method is not supported and throws an exception when it is called.

Method Details

Convert() public method

public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType Type
parameter object
culture System.Globalization.CultureInfo
return object

Convert() public method

Converts an object into a formatted string.
public Convert ( object value, Type targetType, object parameter, string culture ) : object
value object The object to convert.
targetType Type The type of the binding target property. This parameter will be ignored.
parameter object The format specification used to format the object.
culture string The culture to use in the converter. This parameter will be ignored.
return object

ConvertBack() public method

public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType Type
parameter object
culture System.Globalization.CultureInfo
return object

ConvertBack() public method

This method is not supported and throws an exception when it is called.
Throws this exception when the method is called.
public ConvertBack ( object value, Type targetType, object parameter, string culture ) : object
value object The value that is produced by the binding target.
targetType Type The type to convert to.
parameter object The converter parameter to use.
culture string The culture to use in the converter.
return object

ConvertBack() public method

This method is not supported and throws an exception when it is called.
Throws this exception when the method is called.
public ConvertBack ( object value, Type targetTypes, object parameter, CultureInfo culture ) : object[]
value object The value that is produced by the binding target.
targetTypes Type The types to convert to.
parameter object The converter parameter to use.
culture System.Globalization.CultureInfo The culture to use in the converter.
return object[]