GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / DoSingleClick Method
In This Topic
    DoSingleClick Method
    In This Topic
    Perform the behavior that normally occurs upon a single click.
    Syntax
    public virtual bool DoSingleClick( 
       GoInputEventArgs evt
    )

    Parameters

    evt

    Return Value

    true if the single click occured on a document object whose GoObject.OnSingleClick method returned true
    Remarks
    By default this picks the document object at the event's GoInputEventArgs.DocPoint. If an object is found, it raises the ObjectSingleClicked event and calls GoObject.OnSingleClick on the object and on its GoObject.Parents (if any) until it returns true. If no object is found at the event's point, it raises the BackgroundSingleClicked event. This is normally called from the GoTool.GoTool.DoClick method, which is called by those tools that treat clicks in the standard fashion.
    See Also