Nevron Open Vision Documentation
Nevron.Nov.WpfControls Namespace / NAutoCompleteBoxControl Class / PreviewKeyUp Event


In This Topic
    PreviewKeyUp Event (NAutoCompleteBoxControl)
    In This Topic
    Syntax
    'Declaration
     
    
    Public Event PreviewKeyUp As System.Windows.Input.KeyEventHandler
    'Usage
     
    
    Dim instance As NAutoCompleteBoxControl
    Dim handler As System.Windows.Input.KeyEventHandler
     
    AddHandler instance.PreviewKeyUp, handler
    public event System.Windows.Input.KeyEventHandler PreviewKeyUp
    Event Data

    The event handler receives an argument of type System.Windows.Input.KeyEventArgs containing data related to this event. The following KeyEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the key that is part of dead key composition to create a single combined character.  
    (Inherited from System.Windows.Input.InputEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    Gets the keyboard key referenced by the event, if the key will be processed by an Input Method Editor (IME).  
    Gets the input source that provided this input.  
    Gets a value that indicates whether the key referenced by the event is in the down state.  
    Gets a value that indicates whether the keyboard key referenced by the event is a repeated key.  
    Gets a value that indicates whether the key referenced by the event is in the toggled state.  
    Gets a value that indicates whether the key referenced by the event is in the up state.  
    Gets the keyboard key associated with the event.  
    (Inherited from System.Windows.Input.KeyboardEventArgs)
    Gets the state of the keyboard key associated with this event.  
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    Gets the keyboard key referenced by the event, if the key will be processed by the system.  
    (Inherited from System.Windows.Input.InputEventArgs)
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also