I have a tablenode with header/child rows with 2 columns. I need to have anchor points on the rows, but, i want the anchor point to connect on (or near) the edge of the tablenode not inside the tablenode at the edges of the row. Here's what i have:
nod.OffsetHeaderRows = True
nod.Expandable = False
nod.Scrollable = True
nod.EnableStyledText = True
nod.ResizeToFitText(False)
nod.Columns(0).ColumnStyle = ColumnStyle.FixedWidth
nod.Columns(0).Width = 16
nod.Columns(1).ColumnStyle = ColumnStyle.AutoWidth
_TableRowAnchorPattern = New AnchorPattern(New AnchorPoint() _
{New AnchorPoint(50, 50, True, False, Brushes.Green, 0), _
New AnchorPoint(50, 50, False, True, Brushes.Blue, 2)})
Also, the way it is, my column 0 contains an image which is overlayed by the anchor point.
Thanks in advance for the help....