[NUI] Change BackgroundImageSynchronosLoading property as public (#926)
authordongsug-song <35130733+dongsug-song@users.noreply.github.com>
Mon, 8 Jul 2019 09:11:58 +0000 (18:11 +0900)
committerGitHub <noreply@github.com>
Mon, 8 Jul 2019 09:11:58 +0000 (18:11 +0900)
src/Tizen.NUI/src/public/BaseComponents/View.cs

index 9eb46e0..56c14c1 100755 (executable)
@@ -3609,7 +3609,14 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        internal bool BackgroundImageSynchronosLoading
+        /// <summary>
+        ///  Whether to load the BackgroundImage synchronously.
+        ///  If not specified, the default is false, i.e. the BackgroundImage is loaded asynchronously.
+        ///  Note: For Normal Quad images only.
+        /// </summary>
+        /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        public bool BackgroundImageSynchronosLoading
         {
             get
             {