Ejemplo n.º 1
0
 static public void MoveElement(this EditProperty_Array item, EditProperty element, int dst)
 {
     item.MoveElement(item.GetIndexOfElement(element), dst);
 }
Ejemplo n.º 2
0
 static public void InsertElementAfter(this EditProperty_Array item, EditProperty element)
 {
     item.InsertElement(item.GetIndexOfElement(element) + 1);
 }
Ejemplo n.º 3
0
 static public void RemoveElement(this EditProperty_Array item, EditProperty element)
 {
     item.RemoveElement(item.GetIndexOfElement(element));
 }
Ejemplo n.º 4
0
 static public void InsertElementBefore(this EditProperty_Array item, EditProperty element)
 {
     item.InsertElement(item.GetIndexOfElement(element));
 }