GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoMultiTextNode Class / AddString Method
the initial GoText.Text value for the new GoText item
In This Topic
    AddString Method
    In This Topic
    This convenience method adds an item containing a string to the end of the list.
    Syntax
    public virtual GoText AddString( 
       string s
    )

    Parameters

    s
    the initial GoText.Text value for the new GoText item

    Return Value

    the new GoText item
    Remarks
    This is defined as:
    
                  int num = this.ItemCount;
                  GoText t = CreateText(s, num);
                  AddItem(t, CreatePort(true, num), CreatePort(false, num));
                  return t;
                
    See Also