//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the behavior mode of the Pager item (for accessing various
/// pages) within the control.
///
public enum PagerButtons {
///
/// Uses the Previous and Next buttons for
/// accessing the previous and next pages.
///
NextPrevious = 0,
///
/// Uses numbered buttons for accessing pages directly.
///
Numeric = 1,
///
/// Uses the Previous and Next buttons for
/// accessing the previous and next pages, plus first and last page buttons.
///
NextPreviousFirstLast = 2,
///
/// Uses numbered buttons for accessing pages directly, plus first and last page buttons.
///
NumericFirstLast = 3,
}
}