Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Get value of arrow's parent and child nodes. (Read 4144 times)
Mah
Guest


Get value of arrow's parent and child nodes.
Aug 26th, 2005 at 1:49am
Print Post  
This is my code

master = FlowChart1.CreateBox(10, 10, 20, 8)
subordinate = FlowChart1.CreateBox(10, 25, 20, 8)

arrow = FlowChart1.CreateArrow(master, subordinate)

Label3.Text = "Arrow-parent-x : " & arrow.Origin.BoundingRect.X
Label4.Text = "Arrow-parent-y : " & arrow.Origin.BoundingRect.Y
Label5.Text = "Arrow-child-x : " & arrow.Destination.BoundingRect.X
Label6.Text = "Arrow-child-y : " & arrow.Destination.BoundingRect.Y

how i gonna to get the master and subordinate back if i want to output it after i save it.
  
Back to top
 
IP Logged
 
Iva
Junior Member
**
Offline


MindFusion support

Posts: 55
Joined: Aug 6th, 2005
Re: Get value of arrow's parent and child nodes.
Reply #1 - Aug 26th, 2005 at 11:58am
Print Post  
It seems you already access the master and subordinate through the arrow in this sample code ???

The arrow.Origin property refers to the master and arrow.Destination refers to the subordinate.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint