KeyPressEventArgs.Handled Property
.NET Framework 4.5
Gets or sets a value indicating whether the KeyPress event was handled.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following example creates a TextBox control. The keypressed method uses the KeyChar property to check whether the ENTER key is pressed. If the ENTER key is pressed, the Handled property is set to true, which indicates the event is handled.
Imports System Imports System.Windows.Forms Public Class Form1 Inherits Form Public Sub New() ' Create a TextBox control. Dim tb As New TextBox() Me.Controls.Add(tb) AddHandler tb.KeyPress, AddressOf keypressed End Sub 'New Private Sub keypressed(ByVal o As [Object], ByVal e As KeyPressEventArgs) ' The keypressed method uses the KeyChar property to check ' whether the ENTER key is pressed. ' If the ENTER key is pressed, the Handled property is set to true, ' to indicate the event is handled. If e.KeyChar = Microsoft.VisualBasic.ChrW(Keys.Return) Then e.Handled = True End If End Sub 'keypressed Public Shared Sub Main() Application.Run(New Form1()) End Sub 'Main End Class 'Form1
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), 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.