From 2ebc4750316748bc2b940823ae6415c01a317f47 Mon Sep 17 00:00:00 2001 From: Umar Date: Mon, 17 Jul 2017 15:40:36 +0100 Subject: [PATCH] Add Unparent to View. Change-Id: I312772bd39102139c324f9247bd5e84c647bdb67 --- Tizen.NUI/src/public/BaseComponents/View.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Tizen.NUI/src/public/BaseComponents/View.cs b/Tizen.NUI/src/public/BaseComponents/View.cs index 6219501..025832f 100755 --- a/Tizen.NUI/src/public/BaseComponents/View.cs +++ b/Tizen.NUI/src/public/BaseComponents/View.cs @@ -2049,7 +2049,11 @@ namespace Tizen.NUI.BaseComponents throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Unparent() + /// + /// Removes a View from its Parent View / Layer. If the View has no parent, this method does nothing. + /// + ///
The (child) View has been initialized. 
+ public void Unparent() { NDalicPINVOKE.Actor_Unparent(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) -- 2.7.4