Represents converter that converts IEnumerable to Visibility.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
C#
public class EnumerableCountToVisibilityConverter : IValueConverter
Inheritance: objectEnumerableCountToVisibilityConverter
Implements:
Constructors
C#
public EnumerableCountToVisibilityConverter()
Methods
Converts IEnumerable to if the IEnumerable has at least as many items as the count specified by the parameter.
C#
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
The IEnumerable of IOccurrences that will be used for conversion.
targetTypeTypeThis parameter is not used.
parameterobjectThe count of items the IEnumerable must have in order to return Visibility.Visible".
cultureCultureInfoThis parameter is not used.
Returns:A Visibility based on the IEnumerable items count.
This method is not implemented.
C#
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Remarks:
Throws NotImplementedException.