Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / Holiday Class / TypeOfDay Method
A System.DateTime value indicates the date.


In This Topic
    TypeOfDay Method (Holiday)
    In This Topic
    Returns the type of day for the specified date.
    Syntax
    'Declaration
     
    Public Overrides Function TypeOfDay( _
       ByVal dateTime As Date _
    ) As DayType
    'Usage
     
    Dim instance As Holiday
    Dim dateTime As Date
    Dim value As DayType
     
    value = instance.TypeOfDay(dateTime)
    public override DayType TypeOfDay( 
       DateTime dateTime
    )

    Parameters

    dateTime
    A System.DateTime value indicates the date.

    Return Value

    A DayType enumeration that represents the type of day.
    Remarks
    This method will return the DayType.Holiday if the date is a holiday, otherwise, a DayType.Normal will be returned.
    See Also