//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls { /// /// Specifies the name format of the visible /// month for the /// control. /// public enum TitleFormat { /// /// The name format of the visible month contains the /// month but not the year. For example, January. /// Month = 0, /// /// The name format of the visible month contains both the /// month and the year. For example, January 2000. /// MonthYear = 1 } }