Added C# binding for properties in devel-api
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / SWIG / events / actor-event.i
index f65e658..93f803c 100755 (executable)
       }
     }
 
+    public bool BatchParent
+    {
+      get
+      {
+        bool temp = false;
+        GetProperty( Actor.Property.BATCH_PARENT).Get( ref temp );
+        return temp;
+      }
+      set
+      {
+        SetProperty( Actor.Property.BATCH_PARENT, new Dali.Property.Value( value ) );
+      }
+    }
+
+    public int SiblingOrder
+    {
+      get
+      {
+        int temp = 0;
+        GetProperty( Actor.Property.SIBLING_ORDER).Get( ref temp );
+        return temp;
+      }
+      set
+      {
+        SetProperty( Actor.Property.SIBLING_ORDER, new Dali.Property.Value( value ) );
+      }
+    }
+
     public void Show()
     {
       SetVisible(true);
     {
       SetVisible(false);
     }
-
 %}
 
 %enddef