Hello! I am using Stencil and Sfdiagram. First of all I add SymbolItem to stencil like this:
SymbolItem s_item = new SymbolItem(); ... NodeViewModel node = new NodeViewModel() {...}; s_item.Symbol = node; ((SymbolCollection)stencil.SymbolSource).Add(s_item);
|
1. Then after adding an item from the stencil to the sfdiagram I want to get information about s_item. How can I do this?
2. After adding the same item 2 time I want to use s_item not as reference but as separate object. Could you help me?