ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1ComboBox Class / IsOpenKey Method
The key that was pressed.



In This Topic
    IsOpenKey Method
    In This Topic
    Return true if that key should open the combo box. Override to handle you own keyboard selection strategy.
    Syntax
    'Declaration
     
    
    Protected Overridable Function IsOpenKey( _
       ByVal key As Key _
    ) As Boolean
    'Usage
     
    
    Dim instance As C1ComboBox
    Dim key As Key
    Dim value As Boolean
     
    value = instance.IsOpenKey(key)
    protected virtual bool IsOpenKey( 
       Key key
    )
    protected:
    virtual bool IsOpenKey( 
       Key key
    ) 

    Parameters

    key
    The key that was pressed.

    Return Value

    True if the key pressed should open the combo box.
    See Also