X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI%2Fsrc%2Fpublic%2FPropertyMap.cs;h=65f5c5995b8faf38b48def4411271245750619c3;hb=bfd36c81f7b531439f99bb91c64e0baf919e9405;hp=d596ee4fe3d6842aa1111848bfa4287f2cd0f24b;hpb=b57a96705ec68779c73585b6045a96d897985f0e;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/public/PropertyMap.cs b/src/Tizen.NUI/src/public/PropertyMap.cs index d596ee4..65f5c59 100755 --- a/src/Tizen.NUI/src/public/PropertyMap.cs +++ b/src/Tizen.NUI/src/public/PropertyMap.cs @@ -68,6 +68,10 @@ namespace Tizen.NUI { return ValueOfIndex(key); } + internal set + { + SetValue(key, value); + } } /// @@ -83,6 +87,10 @@ namespace Tizen.NUI { return ValueOfIndex(key); } + internal set + { + SetValue(key, value); + } } /// @@ -293,6 +301,18 @@ namespace Tizen.NUI return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } + internal void SetValue(int key, PropertyValue value) + { + Interop.PropertyMap.Property_Map_SetValue_IntKey(swigCPtr, key, PropertyValue.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetValue(string key, PropertyValue value) + { + Interop.PropertyMap.Property_Map_SetValue_StringKey(swigCPtr, key, PropertyValue.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + /// /// Dispose. ///