//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls { using System; /// /// /// Specifies the gridline style. /// /// public enum GridLines { /// /// /// A grid with no grid lines rendered. /// /// None = 0, /// /// /// A grid with only horizontal grid lines rendered. /// /// Horizontal = 1, /// /// /// A grid with only vertical grid lines rendered. /// /// Vertical = 2, /// /// /// A grid woth both horizontal and vertical grid lines rendered. /// /// Both = 3 } }