public void EditElementCompound(IElementFunction<BaseElement> _func)
 {
     processedProp = null;
     processedFunc = null;
     processedFunc = _func;
     ShowEditedObjectInfo ();
 }
 public void SetIdentificator(IElementFunction<BaseElement> _func)
 {
     func = _func;
 }
 //SET COMPOUND WE WILL WORK WITH
 public void EditElementCompound(IwPropertyValue<PropertyType, int> _prop)
 {
     processedProp = null;
     processedFunc = null;
     processedProp = _prop;
     ShowEditedObjectInfo ();
 }