GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / OnContextClick Method
In This Topic
    OnContextClick Method
    In This Topic
    Called when the user context clicks on this object.
    Syntax
    public virtual bool OnContextClick( 
       GoInputEventArgs evt,
       GoView view
    )

    Parameters

    evt
    view

    Return Value

    True to indicate this object handled the event and thus that the calling view need not continue calling the method up the chain of parents.
    Remarks
    By default this method does nothing but return false. The context menu click is normally a right mouse click. This method is normally invoked by GoView.GoView.DoContextClick.
    See Also