Adobe® AIR® API Reference for HTML Developers
Home  |  Show Classes List |  Index  |  Appendixes

Language Reference only       
DateTimeNameStyle 
window.runtime propertywindow.runtime.flash.globalization.DateTimeNameStyle
InheritanceDateTimeNameStyle Inheritance Object

Runtime Versions:  2

The DateTimeNameStyle class enumerates constants that control the length of the month names and weekday names that are used when formatting dates. Use these constants for the nameStyle parameter of the DateTimeFormatter getMonthNames() and getWeekDayNames() methods.

The LONG_ABBREVIATION and SHORT_ABBREVIATION may be the same or different depending on the operating system settings.

See also



Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined By
 Inherited
hasOwnProperty(name:String):Boolean
Indicates whether an object has a specified property defined.
Object
 Inherited
isPrototypeOf(theClass:Object):Boolean
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
propertyIsEnumerable(name:String):Boolean
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
toLocaleString():String
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
toString():String
Returns the string representation of the specified object.
Object
 Inherited
valueOf():Object
Returns the primitive value of the specified object.
Object
Constants
 ConstantDefined By
  FULL : String = "full"
[static] Specifies the full form or full name style for month names and weekday names.
DateTimeNameStyle
  LONG_ABBREVIATION : String = "longAbbreviation"
[static] Specifies the long abbreviation style for month names and weekday names.
DateTimeNameStyle
  SHORT_ABBREVIATION : String = "shortAbbreviation"
[static] Specifies the short abbreviation style for month names and weekday names.
DateTimeNameStyle
Constant Detail

FULL

Constant
public static const FULL:String = "full"

Runtime Versions:  2

Specifies the full form or full name style for month names and weekday names. Examples: Tuesday, November.

LONG_ABBREVIATION

Constant 
public static const LONG_ABBREVIATION:String = "longAbbreviation"

Runtime Versions:  2

Specifies the long abbreviation style for month names and weekday names. Examples: Tues for Tuesday, Nov for November.

SHORT_ABBREVIATION

Constant 
public static const SHORT_ABBREVIATION:String = "shortAbbreviation"

Runtime Versions:  2

Specifies the short abbreviation style for month names and weekday names. Examples: T for Tuesday, N for November.