ClassEnumerableCountToVisibilityConverter
Represents converter that converts IEnumerable to Visibility.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public class EnumerableCountToVisibilityConverter : IValueConverter
Inheritance: objectEnumerableCountToVisibilityConverter
Implements:
Constructors
EnumerableCountToVisibilityConverter()
Declaration
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
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
value
The IEnumerable of IOccurrences that will be used for conversion.
targetType
This parameter is not used.
parameter
The count of items the IEnumerable must have in order to return Visibility.Visible".
culture
This parameter is not used.
Returns
A Visibility based on the IEnumerable items count.
ConvertBack(object, Type, object, CultureInfo)
This method is not implemented.
Declaration
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
value
targetType
parameter
culture
Returns
Remarks
Throws NotImplementedException.