System.UITypes.TCalDayOfWeek

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCalDayOfWeek = (dowMonday, dowTuesday, dowWednesday, dowThursday,
dowFriday, dowSaturday, dowSunday, dowLocaleDefault);

C++

enum class DECLSPEC_DENUM TCalDayOfWeek : unsigned char { dowMonday, dowTuesday, dowWednesday, dowThursday, dowFriday, dowSaturday, dowSunday, dowLocaleDefault };

Properties

Type Visibility Source Unit Parent
enum public
System.UITypes.pas
System.UITypes.hpp
System.UITypes System.UITypes

Description

Defines one of the days in a week.

TCalDayOfWeek can be used to define some special day in a week. For example, constants from the TCalDayOfWeek type can be used, in the FirstDayOfWeek property of the Date-Time pickers, to define which day to use as the first day in a week.

The TCalDayOfWeek type defines the following constants:

Parameter Description

dowLocaleDefault

The default day for the current locale.

dowMonday

Monday.

dowTuesday

Tuesday.

dowWednesday

Wednesday.

dowThursday

Thursday.

dowFriday

Friday.

dowSaturday

Saturday.

dowSunday

Sunday.

See Also