GetDayName Method
See Also Example Applies To
Returns a string with the day of the week from the passed day of the week.
Syntax
object.GetDayName (DoW)
| Part |
Description |
| object |
An object expression that evaluates to an RSSUtility object. |
| DoW |
Required. A value from the enumerated list RSS_DayOfWeek. |
Remarks
An example of the code fragment needed is below:
Dim X as New RSSUtility ' The Utility object
Print X.GetDayName(RSS_Monday)
|