GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / AllowKey Property
In This Topic
    AllowKey Property
    In This Topic
    Gets or sets whether the user can type keystroke commands in this view.
    Syntax
    [Category("Behavior")]
    [DefaultValue(true)]
    [Description("Whether the user can type keystroke commands in this view.")]
    public bool AllowKey {get; set;}
    Remarks
    A false value prevents the user from entering key commands in this view by the normal mechanisms. Your code can always handle keystrokes programmatically by adding a KeyDown event handler to this control or by overriding OnKeyDown.
    See Also