CollapsingRecordNode questions

Hi,

Im using GoDiagrams version 4.1.

Im using CollapsingRecord node, and I want to disable drawing links via UI only want to allow drawing programmatically. How do I disable the cursor (Hand Cursor) when mouse hovers above the port and disable drawing links via UI?

goview.AllowLink = false;

This doesn’t disallow deleting links… goview.AllowDelete = false would do that.

setting AllowLink to false would still let me link the nodes progammatically?

yes.

OK that worked, thanks!