Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic CreateArrow, CreateBox, CreateTable (Read 1085 times)
ogre
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 4
Joined: Aug 11th, 2010
CreateArrow, CreateBox, CreateTable
Aug 11th, 2010 at 4:03pm
Print Post  
Hello,

in the past i work with the Class Libraries FlowChart.NET (v4.3.1.16858 ). There was functions like: CreateArrow, CreateBox and CreateTable. Now i try to work with the new Version FlowChart.NET version 5.3.5 there are not them any more. The manuel ist quit good to change older versions into newer versions, but i can't find somethig about this functions.
What are the name of this functions in the new version?

thx ogre

  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: CreateArrow, CreateBox, CreateTable
Reply #1 - Aug 11th, 2010 at 4:08pm
Print Post  
Hi,

There are equivalent methods provided by the Diagram.Factory object, e.g.

var node = diagram.Factory.CreateShapeNode(...);

or you might add an item to the respective collection:

var node = new ShapeNode(...);
diagram.Nodes.Add(node);

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint