From: minho.sun Date: Mon, 14 Aug 2017 11:17:55 +0000 (+0900) Subject: [Tizen] Add obsolete attribute for Create property of VisualBase X-Git-Tag: preview1-00180^2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=495769866a77c98e14957321f1b21f374fca59e9;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Tizen] Add obsolete attribute for Create property of VisualBase This reverts commit be0af0c1a6c1bdd826dcfad4454d38604657d6ff. Change-Id: Ie291fdb19cae3fbe9ea802dcf8f77deb1764ed9e --- diff --git a/src/Tizen.NUI/src/public/VisualBase.cs b/src/Tizen.NUI/src/public/VisualBase.cs index c36046215..eb7829f50 100755 --- a/src/Tizen.NUI/src/public/VisualBase.cs +++ b/src/Tizen.NUI/src/public/VisualBase.cs @@ -185,8 +185,13 @@ namespace Tizen.NUI /// /// Create the property map representing this visual. /// + [Obsolete("Please be caution! this will be readonly.")] public PropertyMap Creation { + set + { + CreatePropertyMap(value); + } get { PropertyMap map = new PropertyMap(); @@ -194,6 +199,7 @@ namespace Tizen.NUI return map; } } + internal void CreatePropertyMap(PropertyMap map) { NDalicPINVOKE.VisualBase_CreatePropertyMap(swigCPtr, PropertyMap.getCPtr(map));