GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / OnSingleClick Method
In This Topic
    OnSingleClick Method (GoObject)
    In This Topic
    Called when the user single clicks on this object.
    Syntax
    public virtual bool OnSingleClick( 
       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. GoView.GoView.DoSingleClick is the normal caller, which in turn is called by various tools.
    See Also