GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoSubGraph Class / CreateHandle Method
Example
In This Topic
    CreateHandle Method
    In This Topic
    This method is called to create the "handle" representing the whole subgraph that the user can select to drag or click to collapse or expand the subgraph.
    Syntax
    protected virtual GoSubGraphHandle CreateHandle()

    Return Value

    Example
    If you override this method, you may want the definition to do some of the things that the standard definition does:
    protected virtual GoSubGraphHandle CreateHandle() {
      GoSubGraphHandle h = new GoSubGraphHandle();
      return h;
    }
    See Also