//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
///
///
/// Used for table header cell scope attribute and property
///
///
public enum TableHeaderScope {
///
///
/// Property is not set.
///
///
NotSet = 0,
///
///
/// Row scope
///
///
Row = 1,
///
///
/// Column scope
///
///
Column = 2
}
}