GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoViewDisableKeys Enumeration
In This Topic
    GoViewDisableKeys Enumeration
    In This Topic
    Controls the behavior of GoToolManager.GoToolManager.DoKeyDown via the GoView.GoView.DisableKeys property.
    Syntax
    [Flags()]
    public enum GoViewDisableKeys : System.Enum 
    Members
    MemberDescription
    AllDisable all standard operations for keys in GoToolManager.GoToolManager.DoKeyDown.
    ArrowMoveDisable the arrow keys from calling GoView.MoveSelection in GoToolManager.GoToolManager.DoKeyDown.
    ArrowScrollDisable the arrow keys from calling GoView.ScrollLine in GoToolManager.GoToolManager.DoKeyDown.
    CancelDeselectsDisable the Escape key from clearing the GoView.Selection in GoToolManager.GoToolManager.DoKeyDown.
    ClipboardDisable the Ctrl-C and Ctrl-X and Ctrl-V keys from calling GoView.EditCopy and GoView.EditCut and GoView.EditPaste in GoToolManager.GoToolManager.DoKeyDown.
    DeleteDisable the Delete key from calling GoView.EditDelete in GoToolManager.GoToolManager.DoKeyDown.
    EditDisable the F2 key from calling GoView.EditEdit in GoToolManager.GoToolManager.DoKeyDown.
    EndDisable the End key from setting the GoView.DocPosition in GoToolManager.GoToolManager.DoKeyDown.
    HomeDisable the Home key from setting the GoView.DocPosition in GoToolManager.GoToolManager.DoKeyDown.
    NoneAll keyboard behavior of GoToolManager.GoToolManager.DoKeyDown is enabled.
    PageDisable the Page-Down and Page-Up keys from calling GoView.ScrollPage in GoToolManager.GoToolManager.DoKeyDown.
    SelectAllDisable the Ctrl-A key from calling GoView.SelectAll in GoToolManager.GoToolManager.DoKeyDown.
    SelectsByFirstCharDisable having letters and digits select the next IGoLabeledPart by not calling GoView.SelectNextNode in GoToolManager.GoToolManager.DoKeyDown.
    UndoDisable the Ctrl-Z and Ctrl-Y keys from calling GoView.Undo and GoView.Redo in GoToolManager.GoToolManager.DoKeyDown.
    Remarks
    These flags can be combined bit-wise.
    See Also