public void SetProperty(string label, ShapeRefProperty property)
 {
   m_Property = property;
   this.Property = property;
   m_Label.Text = label + ":";
   UpdatePropertyControl();
 }
示例#2
0
 public IProperty Clone()
 {
   ShapeRefProperty clone = new ShapeRefProperty(m_ShapeRefPath);
   if(m_Prepared)
   {
     clone.Prepare();
   }
   
   return clone;
 }