| KeyEventArgsIsKeyUp Method  | 
 
            Determines whether the specified key and modifier was released
            
 
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic bool IsKeyUp(
	Keys key,
	Nullable<Keys> modifier = null
)
Public Function IsKeyUp ( 
	key As Keys,
	Optional modifier As Nullable(Of Keys) = Nothing
) As Boolean
member IsKeyUp : 
        key : Keys * 
        ?modifier : Nullable<Keys> 
(* Defaults:
        let _modifier = defaultArg modifier null
*)
-> bool 
Parameters
- key
- Type: Eto.FormsKeys
 Key to test if it was released
- modifier (Optional)
- Type: SystemNullableKeys
 Modifier of the key, or null to allow any modifiers
Return Value
Type: 
Booleantrue the key with modifier was released; otherwise, 
false.
 See Also
See Also