The Month??LongName property specifies or returns the string to be used for the long (full) name of the indicated month. ?? is a month number from 1 through 12.
object.Month??LongName [= name]
| Part | Description |
|---|---|
| object | Expression that evaluates to a DataPumpTransformDateTimeString object. |
| ?? | Month number from 1 through 12, without a leading 0. |
| name | Long (full) name of the specified month. |
String
Read/write
HRESULT Month??LongName(BSTR* pRetVal);
HRESULT Month??LongName(BSTR pRetVal);
The default value is the English month name.
The property also can be referenced through the TransformServerProperties collection with the following code:
Set transprops = transform.TransformServerProperties
transprops("Month??LongName") [= name]