GoDiagram Web Reference
AddString Method

the initial Text value for the new GoText item
This convenience method adds an item containing a string to the end of the list.
Syntax
'Declaration
 
Public Overridable Function AddString( _
   ByVal s As String _
) As GoText
public virtual GoText AddString( 
   string s
)

Parameters

s
the initial 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;
            
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

GoMultiTextNode Class
GoMultiTextNode Members

 

 


© 2013. Northwoods Software Corporation. All Rights Reserved.

Send Feedback