From: Jinho, Lee Date: Mon, 31 Jul 2017 16:30:23 +0000 (+0900) Subject: [Tizen] Remove Visible propert in View. X-Git-Tag: submit/trunk/20170823.075128~91^2~16^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7063391fa256646dfa425b2368eb187e2394d785;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Tizen] Remove Visible propert in View. - Visble and Visibility was same property. Change-Id: Ibf6a052d4850f79939f6d7759935800decd30af6 --- diff --git a/src/Tizen.NUI/src/public/BaseComponents/View.cs b/src/Tizen.NUI/src/public/BaseComponents/View.cs index d220a7e..391dc41 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/View.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/View.cs @@ -1703,7 +1703,8 @@ namespace Tizen.NUI.BaseComponents } } - public bool Visibility + [Obsolete("Please do not use! this will be deprecated. Please use Visibility instead.")] + public bool Visible { get { @@ -3215,18 +3216,14 @@ namespace Tizen.NUI.BaseComponents /// If an view is not visible, then the view and its children will not be rendered. /// This is regardless of the individual visibility values of the children i.e.an view will only be rendered if all of its parents have visibility set to true. /// - public bool Visible + public bool Visibility { get { bool temp = false; GetProperty(View.Property.VISIBLE).Get(out temp); return temp; - }/* only get is required : removed - set - { - SetProperty(View.Property.VISIBLE, new Tizen.NUI.PropertyValue(value)); - }*/ + } } ///