The Day?LongName property specifies or returns the string to be used for the full name of the indicated day of the week. ? is a number from 1 through 7 that indicates the day of the week.
object.Day?LongName [= name]
Part | Description |
---|---|
object | Expression that evaluates to a DataPumpTransformDateTimeString object |
? | Day of week number from 1 through 7 |
name | Full name of the specified day of week |
String
Read/write
HRESULT GetDay?LongName(BSTR* pRetVal);
HRESULT SetDay?LongName(BSTR pRetVal);
The default value is the English day of week name.
The property also can be referenced through the TransformServerProperties collection with the following code:
Set transprops = transform.TransformServerProperties
transprops("Day?LongName") [= name]