Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / BlackoutDatesCollection Class
Members


In This Topic
    BlackoutDatesCollection Class
    In This Topic
    Represents a collection of non-selectable dates in a GrapeCity.Windows.InputMan.GcDropDownCalendar.
    Object Model
    BlackoutDatesCollection Class
    Syntax
    'Declaration
     
    <DefaultMemberAttribute("Item")>
    <DebuggerTypeProxyAttribute(System.Collections.Generic.Mscorlib_CollectionDebugView`1)>
    <DebuggerDisplayAttribute("Count = {Count}")>
    Public NotInheritable Class BlackoutDatesCollection 
       Inherits System.Collections.ObjectModel.ObservableCollection(Of CalendarDateRange)
    'Usage
     
    Dim instance As BlackoutDatesCollection
    [DefaultMember("Item")]
    [DebuggerTypeProxy(System.Collections.Generic.Mscorlib_CollectionDebugView`1)]
    [DebuggerDisplay("Count = {Count}")]
    public sealed class BlackoutDatesCollection : System.Collections.ObjectModel.ObservableCollection<CalendarDateRange> 
    Remarks
    The BlackoutDatesCollection contains GrapeCity.Windows.InputMan.CalendarDateRange objects, which enables you to specify multiple dates that cannot be selected by a user. To make all past dates not selectable, you can use the AddDatesInPast method.
    Inheritance Hierarchy

    System.Object
       System.Collections.ObjectModel.Collection<T>
          System.Collections.ObjectModel.ObservableCollection<T>
             GrapeCity.Wpf.SpreadSheet.CellType.Editors.BlackoutDatesCollection

    See Also