//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.Design.MobileControls
{
using System;
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
internal enum ContainmentStatus
{
///
/// Containment status is unknown. ie. other than any of the next 4 cases.
///
Unknown = 0,
///
/// Parent control is a Form
///
InForm = 1,
///
/// Parent control is a Panel
///
InPanel = 2,
///
/// Parent control is templateable control in template mode.
///
InTemplateFrame = 3,
///
/// Parent control is Page
///
AtTopLevel = 4,
}
}