nWeekday | (Integer) The numeric designation for the day of the week (1-based index). Numeric value of each day depends on setting of the nFirstDayOfWeek setting. |
---|---|
bAbbreviate | [optional] (Boolean) Logical value specifies whether the weekday name is to be abbreviated.
If not set, then the default value is false (means the weekday name is not abbreviated). |
nFirstDayOfWeek | [optional] (Integer) Numeric value indicating the first day of the week (values see VBScript Date and Time constants).
The default value is vbSunday (Sunday). |
Dim sDate
sDate = WeekdayName(2, false, vbMonday)
' sDate contains "Tuesday"