All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scaffold.libs_as.feathers.controls.DateTimeMode.as Maven / Gradle / Ivy

/*
 Feathers
 Copyright 2012-2016 Bowler Hat LLC. All Rights Reserved.

 This program is free software. You can redistribute and/or modify it in
 accordance with the terms of the accompanying license agreement.
 */
package feathers.controls
{
	/**
	 * Formats for date and time components.
	 */
	public class DateTimeMode
	{
		/**
		 * Both date and time will be displayed.
		 */
		public static const DATE_AND_TIME:String = "dateAndTime";

		/**
		 * Only the time will be displayed. The date will not be displayed.
		 */
		public static const TIME:String = "time";

		/**
		 * Only the date will be displayed. The time will not be displayed.
		 */
		public static const DATE:String = "date";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy