|
//------------------------------------------------------------------------------
// <copyright file="LoginTextLayout.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
/// <devdoc>
/// Specifies the layout of the text and input controls in the Login and PasswordRecovery controls.
/// </devdoc>
public enum LoginTextLayout {
/// <devdoc>
/// Text is placed to the left of input controls.
/// </devdoc>
TextOnLeft = 0,
/// <devdoc>
/// Text is placed above input controls.
/// </devdoc>
TextOnTop = 1
}
}
|