Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Only creating arrows from selected tables? (Read 2216 times)
sbailey
Junior Member
**
Offline



Posts: 61
Location: MD
Joined: Apr 24th, 2009
Only creating arrows from selected tables?
Sep 14th, 2009 at 12:54pm
Print Post  
Is there an easy way to eliminate the appearance of the "hand" cursor and the ability to draw arrows from tables that aren't selected? I could probably do something like only enabling connection points when the table is selected and then disabling them once the table is unselected, but there might be a user interaction option I'm missing.

Relatedly, is there a way to *select* individual rows in a table?
  

Editor Programmer&&Bethesda Softworks
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Only creating arrows from selected tables?
Reply #1 - Sep 14th, 2009 at 2:01pm
Print Post  
You could do that by handling SelectionChanged like this:

Code
Select All
Private Sub fcx_SelectionChanged()
	Dim t As table
	For Each t In fcx.tables
		t.AllowOutgoingArrows = t.Selected
	Next
End Sub
 



There isn't built-in row selection. You could implement something of that kind by handling TableCellClicked and changing the color of all cells in the same row.

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