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