//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the type of the item in a list.
///
[Flags]
public enum DataControlRowState {
///
///
/// An item. It is databound.
///
Normal = 0,
///
///
/// An alternate (even-indexed) item. It is databound.
///
Alternate = 1,
///
///
/// The selected item. It is databound.
///
Selected = 2,
///
///
/// The item in edit mode. It is databound.
///
Edit = 4,
///
///
/// The item in insert mode. It is databound.
///
Insert = 8
}
}