GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / AllowMouse Property
In This Topic
    AllowMouse Property
    In This Topic
    Gets or sets whether the user can use the mouse in this view.
    Syntax
    [Category("Behavior")]
    [DefaultValue(true)]
    [Description("Whether the user can use the mouse in this view.")]
    public bool AllowMouse {get; set;}
    Remarks
    A false value prevents the user from using the mouse in this view by the normal mechanisms. Your code can always handle mouse events programmatically by adding mouse event handlers to this control or by overriding OnMouseDown, OnMouseMove, OnMouseUp, or OnDoubleClick.
    See Also