Represents a Binding converter that converts an integer value to one of its string representations.

Namespace:  C1.WPF.C1Schedule
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
[ValueConversionAttribute(typeof(int), typeof(string))]
public class NumberToStringConverter : IValueConverter
Visual Basic (Declaration)
<ValueConversionAttribute(GetType(Integer), GetType(String))> _
Public Class NumberToStringConverter _
	Implements IValueConverter

Remarks

NumberToStringConverter is a two-way converter. A source value must be a number, and a target value is a string that represents the integer.

Inheritance Hierarchy

System..::..Object
  C1.WPF.C1Schedule..::..NumberToStringConverter

See Also