From: Subhransu Sekhar Mohanty Date: Thu, 5 Feb 2015 08:56:03 +0000 (+0900) Subject: evas/canvas : Documentation added for Eva_Object_Vg class X-Git-Tag: accepted/tizen/mobile/20150709.001446~46^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8175dc7a163171b8f83cf75056deb48716fe0e91;p=platform%2Fupstream%2Fefl.git evas/canvas : Documentation added for Eva_Object_Vg class Change-Id: Iccefe6762153ccb928e4d8fac1300134b5583e42 --- diff --git a/src/lib/evas/canvas/evas_vg.eo b/src/lib/evas/canvas/evas_vg.eo index 8f61aa9..630298a 100644 --- a/src/lib/evas/canvas/evas_vg.eo +++ b/src/lib/evas/canvas/evas_vg.eo @@ -5,9 +5,15 @@ class Evas.VG (Evas.Object, Efl.File) properties { root_node { get { + /*@ + Get the root node of the evas_object_vg. + + @note To manually create the shape object and show in the Vg object + canvas you must create the hirarchy and set the parent as root node. + */ } values { - Evas_VG_Node *container; + Evas_VG_Node *container; /*@ Root node of the VG canvas */ } } size { @@ -24,8 +30,8 @@ class Evas.VG (Evas.Object, Efl.File) */ } values { - uint w; - uint h; + uint w; /*@ width of the vg object */ + uint h; /*@ height of the vg object */ } } fill {