//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
///
/// Specifies the display format of the month on the Previous Month
/// and Next Month buttons within the control.
///
public enum NextPrevFormat {
///
/// Custom text is used.
///
CustomText = 0,
///
/// A short month format is used. For example,
/// Jan.
///
ShortMonth = 1,
///
/// A full month format is used. For
/// example, January.
///
FullMonth = 2
}
}