From 62acbf781d8ec78d79042e6f31dcd46961f575f5 Mon Sep 17 00:00:00 2001 From: "dongsug.song" Date: Fri, 2 Sep 2022 15:21:10 +0900 Subject: [PATCH] [NUI] Add comment for IsVisible(internal method) --- src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs index ef69755..1341f79 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs @@ -792,6 +792,13 @@ namespace Tizen.NUI.BaseComponents throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } + /// + /// Retrieve the View's current Visibility. + /// + /// + /// The property is set in the main thread, so it is not updated in real time when the value is changed in the render thread. + /// However, this method can get the current actual value updated in real time. + /// internal bool IsVisible() { bool ret = Interop.ActorInternal.IsVisible(SwigCPtr); -- 2.7.4