|
//------------------------------------------------------------------------------
// <copyright file="AutoValidate.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
*/
namespace System.Windows.Forms {
using System.Diagnostics;
/// <include file='doc\AutoValidate.uex' path='docs/doc[@for="AutoValidate"]/*' />
/// <devdoc>
/// For a given container control, determines whether the data in child controls
/// will automatically be validated when the user attempts to change the focus.
/// </devdoc>
public enum AutoValidate {
/// <include file='doc\AutoValidate.uex' path='docs/doc[@for="AutoValidate.No"]/*' />
/// <devdoc>
/// Controls in this container will not be validated when the focus changes.
/// </devdoc>
Disable = 0,
/// <include file='doc\AutoValidate.uex' path='docs/doc[@for="AutoValidate.Yes"]/*' />
/// <devdoc>
/// Controls in this container will be validated when the focus changes.
/// If a validation error occurs, the focus is forced to stay in the current control.
/// </devdoc>
EnablePreventFocusChange = 1,
/// <include file='doc\AutoValidate.uex' path='docs/doc[@for="AutoValidate.ChangeFocus"]/*' />
/// <devdoc>
/// Controls in this container will be validated when the focus changes.
/// If a validation error occurs, the focus is allowed to move to the other control.
/// </devdoc>
EnableAllowFocusChange = 2,
/// <include file='doc\AutoValidate.uex' path='docs/doc[@for="AutoValidate.Inherit"]/*' />
/// <devdoc>
/// AutoValidate setting for this container is determined by its parent container.
/// </devdoc>
Inherit = -1,
}
}
|