GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoTextNode Class / GoTextNode Constructor / GoTextNode Constructor(GoFigure)
a GoFigure enumeration value
In This Topic
    GoTextNode Constructor(GoFigure)
    In This Topic
    Create a GoTextNode with four ports and a GoDrawing background, initialized to have the figure fig.
    Syntax
    public GoTextNode( 
       GoFigure fig
    )

    Parameters

    fig
    a GoFigure enumeration value
    Remarks
    This constructor basically does the following, but more efficiently:
    
                GoTextNode n = new GoTextNode();
                n.Background = new GoDrawing(fig);
                
    See Also