//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the position of the Pager item
/// (for accessing various pages) within the control.
///
public enum PagerPosition {
///
/// Positioned at the bottom of the .
///
Bottom = 0,
///
/// Positioned at the top of the .
///
Top = 1,
///
/// Positioned at the top and the bottom of the .
///
TopAndBottom = 2
}
}