Class
EnumerableCountToVisibilityConverter

Represents converter that converts IEnumerable to Visibility.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

cs-api-definition
public class EnumerableCountToVisibilityConverter : IValueConverter

Inheritance: objectEnumerableCountToVisibilityConverter

Implements: IValueConverter

Constructors

EnumerableCountToVisibilityConverter()

Declaration

cs-api-definition
public EnumerableCountToVisibilityConverter()

Methods

Convert(object, Type, object, CultureInfo)

Converts IEnumerable to if the IEnumerable has at least as many items as the count specified by the parameter.

Declaration

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

Parameters

value

object

The IEnumerable of IOccurrences that will be used for conversion.

targetType

Type

This parameter is not used.

parameter

object

The count of items the IEnumerable must have in order to return Visibility.Visible".

culture

CultureInfo

This parameter is not used.

Returns

object

A Visibility based on the IEnumerable items count.

ConvertBack(object, Type, object, CultureInfo)

This method is not implemented.

Declaration

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

Parameters

value

object

targetType

Type

parameter

object

culture

CultureInfo

Returns

object

Remarks

Throws NotImplementedException.