//------------------------------------------------------------------------------ // // 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 PagerMode { /// /// Uses the Previous and Next buttons for /// accessing the previous and next pages. /// NextPrev = 0, /// /// Uses numbered buttons for accessing pages directly. /// NumericPages = 1 } }