Added Doxygen Comments and updated sample application
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / SWIG / events / stage-event.i
index 1ee8579..74693cd 100644 (file)
@@ -524,16 +524,21 @@ public class SceneCreatedEventArgs : EventArgs
      }
   }
 
-  public Vector2 Size
+  ///< name "Size", type Dali.Size (Stage Size value)
+  //@since 1.0.0
+  public Dali.Size Size
   {
      get
      {
-        Vector2 ret = GetSize();
+        Vector2 ret1 = GetSize();
+        Dali.Size ret= new Size(ret1);
         return ret;
      }
   }
 
-  public Vector4 BackgroundColor
+  ///< name "BackgroundColor", type Dali.Color (Stage background color value)
+  //@since 1.0.0
+  public Dali.Color BackgroundColor
   {
      set
      {
@@ -541,7 +546,8 @@ public class SceneCreatedEventArgs : EventArgs
      }
      get
      {
-        Vector4 ret = GetBackgroundColor();
+        Vector4 ret1 = GetBackgroundColor();
+        Dali.Color ret = new Color(ret1);
         return ret;
      }
    }