Spread Windows Forms 12.0 Product Documentation
Control Property (DialogKeyEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DialogKeyEventArgs Class : Control Property
Gets whether the Ctrl key was pressed.
Syntax
'Declaration
 
Public ReadOnly Property Control As Boolean
'Usage
 
Dim instance As DialogKeyEventArgs
Dim value As Boolean
 
value = instance.Control
public bool Control {get;}
Example
This example gets the Control property.
private void fpSpread1_DialogKey(object sender, FarPoint.Win.Spread.DialogKeyEventArgs e)
        {
            listBox1.Items.Add(e.Control);
        }
Private Sub fpSpread1_DialogKey(sender As Object, e As FarPoint.Win.Spread.DialogKeyEventArgs) Handles fpSpread1.DialogKey
        ListBox1.Items.Add(e.Control)
    End Sub
See Also

Reference

DialogKeyEventArgs Class
DialogKeyEventArgs Members