Class
InvertedVisibilityConverter

Represents converter that converts Visibility value to its opposite.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

cs-api-definition
public class InvertedVisibilityConverter : IValueConverter

Inheritance: objectInvertedVisibilityConverter

Implements: IValueConverter

Constructors

InvertedVisibilityConverter()

Declaration

cs-api-definition
public InvertedVisibilityConverter()

Methods

Convert(object, Type, object, CultureInfo)

Converts Visibility value to its opposite value.

Declaration

cs-api-definition
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)

Parameters

value

object

The value produced by the binding source.

targetType

Type

The type of the binding target property. This parameter is not used.

parameter

object

The converter parameter to use. This parameter is not used.

culture

CultureInfo

The culture to use in the converter. This parameter is not used.

Returns

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

cs-api-definition
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)

Parameters

value

object

This parameter is not used.

targetType

Type

This parameter is not used.

parameter

object

This parameter is not used.

culture

CultureInfo

This parameter is not used.

Returns

object

The value.

Remarks

This method is not implemented.