[NUI] Public ChildAdded,ChildRemoved,PropertySet events & properties of TableView...
authordongsug-song <35130733+dongsug-song@users.noreply.github.com>
Thu, 20 Sep 2018 09:53:41 +0000 (18:53 +0900)
committerGitHub <noreply@github.com>
Thu, 20 Sep 2018 09:53:41 +0000 (18:53 +0900)
Change-Id: I77b58a63e863b16e9eeef8c09da9ae5160f5e735

src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
src/Tizen.NUI/src/public/BaseComponents/TableView.cs
src/Tizen.NUI/src/public/BaseComponents/View.cs
src/Tizen.NUI/src/public/BaseHandle.cs

index 043cffd..6c74588 100755 (executable)
@@ -91,7 +91,7 @@ namespace Tizen.NUI.BaseComponents
                         auxiliaryImageURL = auxiliaryImageURL.Replace("*Resource*", resource);
                         mmap.Insert(NDalic.IMAGE_VISUAL_AUXILIARY_IMAGE_URL, new PropertyValue(auxiliaryImageURL));
                     }
-                    
+
                     map.Merge(mmap);
                 }
                 if (imageView._border == null)
index edfdb3b..53fda09 100755 (executable)
@@ -369,8 +369,6 @@ namespace Tizen.NUI.BaseComponents
             /// The index or position of a row.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
-            /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-            [EditorBrowsable(EditorBrowsableState.Never)]
             public uint RowIndex
             {
                 get
@@ -407,8 +405,6 @@ namespace Tizen.NUI.BaseComponents
             /// The index or position of a column.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
-            /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-            [EditorBrowsable(EditorBrowsableState.Never)]
             public uint ColumnIndex
             {
                 get
@@ -444,8 +440,6 @@ namespace Tizen.NUI.BaseComponents
             /// The span of a row.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
-            /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-            [EditorBrowsable(EditorBrowsableState.Never)]
             public uint RowSpan
             {
                 get
@@ -481,8 +475,6 @@ namespace Tizen.NUI.BaseComponents
             /// The span of a column.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
-            /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-            [EditorBrowsable(EditorBrowsableState.Never)]
             public uint ColumnSpan
             {
                 get
index 04f4b51..0ee01e9 100755 (executable)
@@ -1259,8 +1259,6 @@ namespace Tizen.NUI.BaseComponents
         /// Event argument passed through the ChildAdded event.
         /// </summary>
         /// <since_tizen> 5 </since_tizen>
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
         public class ChildAddedEventArgs : EventArgs
         {
             /// <summary>
@@ -1274,8 +1272,6 @@ namespace Tizen.NUI.BaseComponents
         /// Event when a child is added.
         /// </summary>
         /// <since_tizen> 5 </since_tizen>
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
         public new event EventHandler<ChildAddedEventArgs> ChildAdded;
 
         // From Container Base class
@@ -1339,8 +1335,6 @@ namespace Tizen.NUI.BaseComponents
         /// Event argument passed through the ChildRemoved event.
         /// </summary>
         /// <since_tizen> 5 </since_tizen>
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
         public class ChildRemovedEventArgs : EventArgs
         {
             /// <summary>
@@ -1354,8 +1348,6 @@ namespace Tizen.NUI.BaseComponents
         /// Event when a child is removed.
         /// </summary>
         /// <since_tizen> 5 </since_tizen>
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
         public new event EventHandler<ChildRemovedEventArgs> ChildRemoved;
 
 
index 14be715..5b7355e 100755 (executable)
@@ -33,8 +33,6 @@ namespace Tizen.NUI
         /// Event when a property is set.
         /// </summary>
         /// <since_tizen> 5 </since_tizen>
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
         public event PropertyChangedEventHandler PropertySet;
 
         internal void NotifyPropertyChanged([CallerMemberName] String propertyName = "")