[NUI] Change internal api to public 46/157846/1
authorhuiyu,eun <huiyu.eun@samsung.com>
Thu, 26 Oct 2017 11:36:41 +0000 (20:36 +0900)
committerhuiyu,eun <huiyu.eun@samsung.com>
Thu, 26 Oct 2017 11:36:41 +0000 (20:36 +0900)
- GetLayer()
: Gets the parent layer of this view. If a view has no parent, this method does nothing.

Change-Id: I15a1837ebc34fbf2b00ddbf1e650bba946da691f
Signed-off-by: huiyu,eun <huiyu.eun@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/View.cs

index b523aa1..160f483 100755 (executable)
@@ -2529,7 +2529,13 @@ namespace Tizen.NUI.BaseComponents
             return ret;
         }
 
-        internal Layer GetLayer()
+        /// <summary>
+        /// Gets the parent layer of this view.If a view has no parent, this method does nothing.
+        /// </summary>
+        /// <pre>The view has been initialized. </pre>
+        /// <returns>the parent layer of view </returns>
+        /// <since_tizen> 5 </since_tizen>
+        public Layer GetLayer()
         {
             IntPtr cPtr = NDalicPINVOKE.Actor_GetLayer(swigCPtr);
             Layer ret = Registry.GetManagedBaseHandleFromNativePtr(cPtr) as Layer;