//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the selection behavior of list controls.
///
public enum ListSelectionMode {
///
/// The list control allows only one item to be selected at one time.
///
Single = 0,
///
/// The list control allows multiple items to be selected at one time.
///
Multiple = 1
}
}