From 2079e4e9556a77f706c7f5bb1220ca360967c919 Mon Sep 17 00:00:00 2001 From: Dongsug Song Date: Fri, 11 Jun 2021 15:31:33 +0900 Subject: [PATCH] [NUI] Add Add GetHeightForWidth(), GetWidthForHeight() --- src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs index ba203dc..8e7a7ff 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs @@ -480,7 +480,6 @@ namespace Tizen.NUI.BaseComponents /// The width to use. /// The height based on the width. /// 3 - [Obsolete("Deprecated in API9, will be removed in API11. Please use HeightForWidth property instead!")] public float GetHeightForWidth(float width) { float ret = Interop.Actor.GetHeightForWidth(SwigCPtr, width); @@ -497,7 +496,6 @@ namespace Tizen.NUI.BaseComponents /// The height to use. /// The width based on the height. /// 3 - [Obsolete("Deprecated in API9, will be removed in API11. Please use WidthForHeight property instead!")] public float GetWidthForHeight(float height) { float ret = Interop.Actor.GetWidthForHeight(SwigCPtr, height); -- 2.7.4