Class InvertedVisibilityConverter
Represents converter that converts Visibility value to its opposite.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public class InvertedVisibilityConverter : IValueConverter
Constructors
InvertedVisibilityConverter()
Declaration
public InvertedVisibilityConverter()
Methods
Convert(Object, Type, Object, CultureInfo)
Converts Visibility value to its opposite value.
Declaration
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
System.Object
value
The value produced by the binding source. |
System.Type
targetType
The type of the binding target property. This parameter is not used. |
System.Object
parameter
The converter parameter to use. This parameter is not used. |
System.Globalization.CultureInfo
culture
The culture to use in the converter. This parameter is not used. |
Returns
System.Object
If the provided value is Visibility.Visible, returns Visibility.Collapsed. If the provided value is Visibility.Collapsed, returns Visibility.Visible. |
ConvertBack(Object, Type, Object, CultureInfo)
Returns the value.
Declaration
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
System.Object
value
This parameter is not used. |
System.Type
targetType
This parameter is not used. |
System.Object
parameter
This parameter is not used. |
System.Globalization.CultureInfo
culture
This parameter is not used. |
Returns
System.Object
The value. |
Remarks
This method is not implemented.