ContainerControl.Validate Method (System.Windows.Forms)

Switch View :
ScriptFree
.NET Framework Class Library
ContainerControl.Validate Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Verifies the value of the control losing focus by causing the Validating and Validated events to occur, in that order.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Syntax

Visual Basic
Public Function Validate As Boolean
C#
public bool Validate()
Visual C++
public:
bool Validate()
F#
member Validate : unit -> bool 

Return Value

Type: System.Boolean
true if validation is successful; otherwise, false. If called from the Validating or Validated event handlers, this method will always return false.
Remarks

The Validate method validates the last child control that is not validated and its ancestors up through, but not including, the current container control. This overloaded version always performs validation, regardless of the value of the AutoValidate property of the control's parent. Therefore use it to unconditionally force validation.

Version Information

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

See Also

Reference