[NUI] Add comments (2nd patch)
authordongsug.song <dongsug.song@samsung.com>
Fri, 20 Sep 2024 12:30:36 +0000 (21:30 +0900)
committerbshsqa <32317749+bshsqa@users.noreply.github.com>
Wed, 25 Sep 2024 12:13:40 +0000 (21:13 +0900)
26 files changed:
src/Tizen.NUI/src/public/Animation/Path.cs
src/Tizen.NUI/src/public/Animation/TransitionOptions.cs
src/Tizen.NUI/src/public/Application/NUIApplication.cs
src/Tizen.NUI/src/public/Application/NUIWidgetApplication.cs
src/Tizen.NUI/src/public/ApplicationAnimation/ApplicationTransitionManager.cs
src/Tizen.NUI/src/public/BaseComponents/CameraView.cs
src/Tizen.NUI/src/public/BaseComponents/CustomView.cs
src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs
src/Tizen.NUI/src/public/BaseComponents/Style/Selector.cs
src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs
src/Tizen.NUI/src/public/BaseComponents/TableView.cs
src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs
src/Tizen.NUI/src/public/BaseComponents/TextEditorBindableProperty.cs
src/Tizen.NUI/src/public/BaseComponents/TextEditorEvent.cs
src/Tizen.NUI/src/public/BaseComponents/TextField.cs
src/Tizen.NUI/src/public/BaseComponents/TextFieldBindableProperty.cs
src/Tizen.NUI/src/public/BaseComponents/TextFieldEvent.cs
src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs
src/Tizen.NUI/src/public/BaseComponents/TextLabelBindableProperty.cs
src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/ColorStop.cs
src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/PathCommands.cs
src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/Picture.cs
src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/Shape.cs
src/Tizen.NUI/src/public/BaseComponents/VideoView.cs
src/Tizen.NUI/src/public/BaseComponents/View.cs
src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs

index 44f760bcf95ee8a54798563eba7eeb6fd6a87bf4..6c84cddbd987125af10fcd15887678429cfd7bf0 100755 (executable)
@@ -21,14 +21,14 @@ using System.ComponentModel;
 namespace Tizen.NUI
 {
     /// <summary>
-    /// A 3D parametric curve.<br />
-    /// Paths can be used to animate the position and orientation of actors.<br />
+    /// A 3D parametric curve.
+    /// Paths can be used to animate the position and orientation of views.
     /// </summary>
     /// <since_tizen> 3 </since_tizen>
     public class Path : BaseHandle
     {
         /// <summary>
-        /// Creates an initialized path handle.
+        /// The default constructor. Creates an initialized path handle.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public Path() : this(Interop.Path.New(), true)
@@ -41,7 +41,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Enumeration for the Points.
+        /// Gets or sets the array of points defining the path.
+        /// The property value is a PropertyArray containing the points that define the path.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public PropertyArray Points
@@ -63,7 +64,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Enumeration for the ControlPoints.
+        /// Gets or sets the control points of the path.
+        /// The property value represents the array of control points defining the path.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public PropertyArray ControlPoints
@@ -96,7 +98,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Adds a control point.
+        /// Adds a control point to the path.
         /// </summary>
         /// <param name="point">The new control point to be added.</param>
         /// <since_tizen> 3 </since_tizen>
@@ -139,6 +141,7 @@ namespace Tizen.NUI
         /// An accessor for the interpolation points.
         /// </summary>
         /// <param name="index">The index of the interpolation point.</param>
+        /// <returns>The interpolation point at the specified index.</returns>
         /// <since_tizen> 3 </since_tizen>
         public Vector3 GetPoint(uint index)
         {
@@ -151,6 +154,7 @@ namespace Tizen.NUI
         /// An accessor for the control points.
         /// </summary>
         /// <param name="index">The index of the control point.</param>
+        /// <returns>The control point at the specified index.</returns>
         /// <since_tizen> 3 </since_tizen>
         public Vector3 GetControlPoint(uint index)
         {
index 7436842619ab4129a014610aa34582646424e2be..8c0e9152923c73a4204e29ca83164caeaf13f887 100755 (executable)
@@ -58,9 +58,9 @@ namespace Tizen.NUI
 
         /// <summary>
         /// Hidden API (Inhouse API).
-        /// Dispose.
+        /// Releases unmanaged and optionally managed resources.
         /// </summary>
-        /// <param name="disposing"></param>
+        /// <param name="disposing">true to release both managed and unmanaged resources. false to release only unmanaged resources.</param>
         [EditorBrowsable(EditorBrowsableState.Never)]
         protected virtual void Dispose(bool disposing)
         {
index 44e2ebe7df8330f2f9aef99a5357bb87ce440dd2..e7fb82753b1d109c3899d6048fc00bc6b5101174 100755 (executable)
@@ -70,7 +70,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// The default constructor.
+        /// Initializes a new instance of the <see cref="NUIApplication"/> class.
+        /// This is the default constructor that initializes the NUI application using the NUICoreBackend.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         [SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
@@ -84,8 +85,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="windowSize">The window size.</param>
         /// <param name="windowPosition">The window position.</param>
-        /// <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.
+        /// This will be public opened in the future after ACR done. Before ACR, need to be hidden as inhouse API.
         [SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
         [EditorBrowsable(EditorBrowsableState.Never)]
         public NUIApplication(Size2D windowSize, Position2D windowPosition) : base(new NUICoreBackend("", NUIApplication.WindowMode.Opaque, windowSize, windowPosition))
@@ -95,8 +95,9 @@ namespace Tizen.NUI
 
         /// <summary>
         /// The constructor with a stylesheet.
+        /// This constructor initializes a new instance of the Tizen.NUI.NUIApplication class with the specified stylesheet.
         /// </summary>
-        /// <param name="styleSheet">The styleSheet url.</param>
+        /// <param name="styleSheet">The URL of the stylesheet to apply to the application.</param>
         /// <since_tizen> 3 </since_tizen>
         [SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
         public NUIApplication(string styleSheet) : base(new NUICoreBackend(styleSheet))
@@ -110,8 +111,7 @@ namespace Tizen.NUI
         /// <param name="styleSheet">The styleSheet URL.</param>
         /// <param name="windowSize">The window size.</param>
         /// <param name="windowPosition">The window position.</param>
-        /// <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.
+        /// This will be public opened in the future after ACR done. Before ACR, need to be hidden as inhouse API.
         [SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
         [EditorBrowsable(EditorBrowsableState.Never)]
         public NUIApplication(string styleSheet, Size2D windowSize, Position2D windowPosition) : base(new NUICoreBackend(styleSheet, WindowMode.Opaque, windowSize, windowPosition))
@@ -121,6 +121,7 @@ namespace Tizen.NUI
 
         /// <summary>
         /// The constructor with a stylesheet and window mode.
+        /// This constructor initializes the NUIApplication with a specified stylesheet and window mode.
         /// </summary>
         /// <param name="styleSheet">The styleSheet url.</param>
         /// <param name="windowMode">The windowMode.</param>
@@ -138,8 +139,7 @@ namespace Tizen.NUI
         /// <param name="windowMode">The windowMode.</param>
         /// <param name="windowSize">The window size.</param>
         /// <param name="windowPosition">The window position.</param>
-        /// <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.
+        /// This will be public opened in the future after ACR done. Before ACR, need to be hidden as inhouse API.
         [SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
         [EditorBrowsable(EditorBrowsableState.Never)]
         public NUIApplication(string styleSheet, WindowMode windowMode, Size2D windowSize, Position2D windowPosition) : base(new NUICoreBackend(styleSheet, windowMode, windowSize, windowPosition))
@@ -309,14 +309,39 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Occurs whenever the application is resumed.
+        /// The Resumed event handler.
+        /// This event is triggered when the application resumes from being paused or stopped.
+        /// It can be used to perform actions that need to be executed when the application becomes active again.
         /// </summary>
+        /// <example>
+        /// <code>
+        /// NUIApplication app = new NUIApplication();
+        /// app.Resumed += OnAppResumed;
+        ///
+        /// void OnAppResumed(object sender, EventArgs e)
+        /// {
+        ///     // Perform actions when the application is resumed
+        /// }
+        /// </code>
+        /// </example>
         /// <since_tizen> 4 </since_tizen>
         public event EventHandler Resumed;
 
         /// <summary>
-        /// Occurs whenever the application is paused.
+        /// The event handler that gets called when the application is paused.
+        /// This event is triggered when the application transitions to a paused state.
         /// </summary>
+        /// <example>
+        /// <code>
+        /// NUIApplication app = new NUIApplication();
+        /// app.Paused += OnAppPaused;
+        ///
+        /// void OnAppPaused(object sender, EventArgs e)
+        /// {
+        ///     // Perform actions when the application is paused
+        /// }
+        /// </code>
+        /// </example>
         /// <since_tizen> 4 </since_tizen>
         public event EventHandler Paused;
 
@@ -393,7 +418,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// ResourceManager to handle multilingual.
+        /// The MultilingualResourceManager property provides access to a System.Resources.ResourceManager instance that can be used to manage resources for different languages.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
         public static System.Resources.ResourceManager MultilingualResourceManager
@@ -470,8 +495,9 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Register the assembly to XAML.
+        /// Registers the specified assembly to XAML, allowing types within the assembly to be used in XAML files.
         /// </summary>
+        /// <param name="assembly">The assembly to register.</param>
         /// <since_tizen> 5 </since_tizen>
         public static void RegisterAssembly(Assembly assembly)
         {
@@ -479,9 +505,18 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Runs the NUIApplication.
+        /// This method starts the main loop of the application, allowing it to receive events and run its lifecycle.
         /// </summary>
-        /// <param name="args">Arguments from commandline.</param>
+        /// <param name="args">Arguments from commandline. These arguments can be used to customize the application behavior at startup.</param>
+        /// <example>
+        /// <code>
+        /// static void Main(string[] args)
+        /// {
+        ///     NUIApplication app = new NUIApplication();
+        ///     app.Run(args);
+        /// }
+        /// </code>
+        /// </example>
         /// <since_tizen> 4 </since_tizen>
         public override void Run(string[] args)
         {
@@ -493,6 +528,7 @@ namespace Tizen.NUI
 
         /// <summary>
         /// Exits the NUIApplication.
+        /// This method causes the application to terminate gracefully.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
         public override void Exit()
@@ -557,8 +593,10 @@ namespace Tizen.NUI
         }
 
         /// <summary>
+        /// The OnLocaleChanged method is called when the system locale settings have changed.
         /// Overrides this method if you want to handle behavior.
         /// </summary>
+        /// <param name="e">The event arguments containing the new locale information.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void OnLocaleChanged(LocaleChangedEventArgs e)
         {
@@ -566,8 +604,10 @@ namespace Tizen.NUI
         }
 
         /// <summary>
+        /// The OnLowBattery method is called when the system is under Low Battery status.
         /// Overrides this method if you want to handle behavior.
         /// </summary>
+        /// <param name="e">The event arguments containing the battery status.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void OnLowBattery(LowBatteryEventArgs e)
         {
@@ -575,8 +615,10 @@ namespace Tizen.NUI
         }
 
         /// <summary>
+        /// The OnLowMemory method is called when the system is under Low Memory status.
         /// Overrides this method if you want to handle behavior.
         /// </summary>
+        /// <param name="e">The event arguments containing low memory status information.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void OnLowMemory(LowMemoryEventArgs e)
         {
@@ -584,8 +626,11 @@ namespace Tizen.NUI
         }
 
         /// <summary>
+        /// This method is called when the system's region format settings have changed.
+        /// It provides an opportunity to handle any necessary adjustments or updates based on the new region format.
         /// Overrides this method if you want to handle behavior.
         /// </summary>
+        /// <param name="e">The event arguments containing information about the region format change.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void OnRegionFormatChanged(RegionFormatChangedEventArgs e)
         {
@@ -594,7 +639,6 @@ namespace Tizen.NUI
 
         /// <summary>
         /// This method is to handle behavior when the device orientation is changed.
-        ///
         /// When device is rotated to ccw or cw, this event occurs.
         /// In addition, this event is different to window orientation changed event.
         /// The window orientation event is for per a window and occurs when some flags should be set before.
@@ -607,6 +651,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
+        /// This method is called when the application is terminated.
         /// Overrides this method if you want to handle behavior.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
@@ -617,7 +662,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if you want to handle behavior.
+        /// Overrides this method if you want to handle behavior when the application is paused.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         protected virtual void OnPause()
@@ -627,7 +672,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if you want to handle behavior.
+        /// Overrides this method if you want to handle behavior when the application is resumed.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         protected virtual void OnResume()
@@ -637,7 +682,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if you want to handle behavior.
+        /// Overrides this method if you want to handle behavior before the application is created.
+        /// This method is guaranteed to be called before <see cref="OnCreate"/> is called.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         protected virtual void OnPreCreate()
@@ -653,8 +699,9 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if you want to handle behavior.
+        /// This method is overridden to handle the application control event received.
         /// </summary>
+        /// <param name="e">The event arguments containing the received application control.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
         {
@@ -667,7 +714,9 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if you want to handle behavior.
+        /// The OnCreate method of NUIApplication class.
+        /// This method is called when the application is created.
+        /// Override this method to handle custom initialization logic.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         protected override void OnCreate()
index 612fabefcfced2aaf97b066a48225d4ceaf062c2..f8a352a2b56e763134c9679ef59010d93372e146 100755 (executable)
@@ -115,7 +115,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Run NUIWidgetApplication.
+        /// Runs the NUI widget application.
+        /// This method starts the main loop of the application.
         /// </summary>
         /// <param name="args">Arguments from commandline.</param>
         /// <since_tizen> 4 </since_tizen>
@@ -126,8 +127,12 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Exit NUIWidgetApplication.
+        /// The Exit method of NUIWidgetApplication.
         /// </summary>
+        /// <remarks>
+        /// Note that calling this method will terminate the entire application.
+        /// Ensure that all necessary cleanup operations are performed before calling this method.
+        /// </remarks>
         /// <since_tizen> 4 </since_tizen>
         public override void Exit()
         {
@@ -150,8 +155,9 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if want to handle OnLocaleChanged behavior.
+        /// Override this method to implement custom behavior when the system locale changes.
         /// </summary>
+        /// <param name="e">The event arguments containing the new locale information.</param>
         /// <since_tizen> 4 </since_tizen>
         protected override void OnLocaleChanged(LocaleChangedEventArgs e)
         {
@@ -160,8 +166,10 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if want to handle OnLowBattery behavior.
+        /// The OnLowBattery method is called when the device's battery level is low.
+        /// This method can be overridden to implement custom behavior when the device's battery level is low.
         /// </summary>
+        /// <param name="e">The event arguments containing the battery status.</param>
         /// <since_tizen> 4 </since_tizen>
         protected override void OnLowBattery(LowBatteryEventArgs e)
         {
@@ -170,8 +178,10 @@ namespace Tizen.NUI
         }
 
         /// <summary>
+        /// This method is called when the system is running low on memory.
         /// Overrides this method if want to handle OnLowMemory behavior.
         /// </summary>
+        /// <param name="e">The event arguments containing the memory status.</param>
         /// <since_tizen> 4 </since_tizen>
         protected override void OnLowMemory(LowMemoryEventArgs e)
         {
@@ -180,8 +190,9 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if want to handle OnRegionFormatChanged behavior.
+        /// This method can be overridden to implement custom behavior when the region format changes.
         /// </summary>
+        /// <param name="e">The event arguments containing information about the region format change.</param>
         /// <since_tizen> 4 </since_tizen>
         protected override void OnRegionFormatChanged(RegionFormatChangedEventArgs e)
         {
@@ -191,7 +202,6 @@ namespace Tizen.NUI
 
         /// <summary>
         /// This method is to handle behavior when the device orientation is changed.
-        ///
         /// When device is rotated to ccw or cw, this event occurs.
         /// In addition, this event is different to window orientation changed event.
         /// The window orientation event is for per a window and occurs when some flags should be set before.
@@ -205,7 +215,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if want to handle OnTerminate behavior.
+        /// This method is called when the application is terminated.
+        /// This method is overridden to perform custom actions when the application terminates.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
         protected override void OnTerminate()
@@ -215,7 +226,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if want to handle OnPreCreate behavior.
+        /// Overrides this method if you want to handle behavior before the application is created.
+        /// This method is guaranteed to be called before <see cref="OnCreate"/> is called.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
         protected virtual void OnPreCreate()
@@ -224,7 +236,8 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Overrides this method if want to handle OnCreate behavior.
+        /// This method is called when the application is created.
+        /// Override this method to handle custom initialization logic.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
         protected override void OnCreate()
index c2fb041634bbb6be5004f0b95961fee851c1223e..a443685d4ffbe7efcce1ed9d18c1f4af43e4bc68 100755 (executable)
@@ -39,6 +39,7 @@ namespace Tizen.NUI
         /// <summary>
         /// ApplicationTransitionManager Instance for singleton
         /// </summary>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public static ApplicationTransitionManager Instance
         {
             get
index 84f85ff96f6669f2488006ec0094cefcd9b9f6b2..43a6fcf1c03884f2be8cf4034d80ab1fc5bcaaf6 100755 (executable)
@@ -26,10 +26,20 @@ namespace Tizen.NUI.BaseComponents
     /// <since_tizen> 9 </since_tizen>
     public class CameraView : View
     {
+        /// <summary>
+        /// Enumeration for specifying the display type of the CameraView.
+        /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public enum DisplayType
         {
+            /// <summary>
+            /// The camera view will be displayed using hardware overlay.
+            /// </summary>
             Window = 0,   //  HW overlay
+            
+            /// <summary>
+            /// The camera view will be displayed using texture stream.
+            /// </summary>
             Image     //  texture stream
         };
 
index 73939b6f5c762256273bd923ce26a9371f66191a..43030022b1276a26c13a7cce0ae95f0736532432 100755 (executable)
@@ -26,7 +26,7 @@ namespace Tizen.NUI.BaseComponents
     /// <since_tizen> 3 </since_tizen>
     public class CustomView : ViewWrapper
     {
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty FocusNavigationSupportProperty = null;
         internal static void SetInternalFocusNavigationSupportProperty(BindableObject bindable, object oldValue, object newValue)
@@ -43,7 +43,7 @@ namespace Tizen.NUI.BaseComponents
             return customView.IsKeyboardNavigationSupported();
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty FocusGroupProperty = null;
         internal static void SetInternalFocusGroupProperty(BindableObject bindable, object oldValue, object newValue)
index 3af4bd70e9122813cb39ea2166f96a2f6c1b6336..7467bac35fb73c2bd6569fe0dbe5ddea36063098 100755 (executable)
@@ -326,7 +326,8 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Gets the playing state
+        /// Gets the playing state of the LottieAnimationView.
+        /// This property returns the current play state of the LottieAnimationView.
         /// </summary>
         /// <since_tizen> 7 </since_tizen>
         public PlayStateType PlayState
@@ -556,7 +557,8 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Sets or gets the stop behavior.
+        /// Sets or gets the stop behavior of the LottieAnimationView. 
+        /// This property determines how the animation behaves when it stops.
         /// </summary>
         /// <since_tizen> 7 </since_tizen>
         public StopBehaviorType StopBehavior
@@ -859,7 +861,8 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Play Animation.
+        /// Plays the Lottie animation.
+        /// This method starts the playback of the Lottie animation.
         /// </summary>
         /// <since_tizen> 7 </since_tizen>
         public new void Play()
@@ -871,7 +874,8 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Pause Animation.
+        /// Pauses the Lottie animation.
+        /// This method pauses the animation without resetting its progress.
         /// </summary>
         /// <since_tizen> 7 </since_tizen>
         public new void Pause()
@@ -883,7 +887,8 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Stop Animation.
+        /// Stops the Lottie animation.
+        /// This method stops the currently playing Lottie animation.
         /// </summary>
         /// <since_tizen> 7 </since_tizen>
         public new void Stop()
@@ -1194,7 +1199,7 @@ namespace Tizen.NUI.BaseComponents
 
         #region Event, Enum, Struct, ETC
         /// <summary>
-        /// Animation finished event.
+        /// The event handler for the animation finished event.
         /// </summary>
         /// <since_tizen> 7 </since_tizen>
         public event EventHandler Finished
index d54b9ba34c516a5ec60a25f805bbb57110ea82dd..bc0772b14f163ae083698fb46ab15da7896920e5 100755 (executable)
@@ -53,6 +53,7 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Create an empty selector.
+        /// This constructor returns an empty selector object which can be used to define various selectors for different states and conditions.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public Selector()
@@ -149,9 +150,9 @@ namespace Tizen.NUI.BaseComponents
             set => Add(ControlState.DisabledFocused, value);
         }
         /// <summary>
-        /// SelectedFocused State.
+        /// Gets or sets the value associated with the SelectedFocused state.
         /// </summary>
-        /// <remark> This is for XAML. Do not ACR this. </remark>
+        /// <remark> This property is intended for internal use within XAML files and should not be subject to ACR.</remark>
         public T SelectedFocused
         {
             get => GetSafely(x => x.State == ControlState.SelectedFocused);
@@ -311,7 +312,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Returns an enumerator that iterates through the collection.
         /// </summary>
-        /// <return> An enumerator that can be used to iterate through the collection. </return>
+        /// <returns> An enumerator that can be used to iterate through the collection. </returns>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public IEnumerator<SelectorItem<T>> GetEnumerator()
         {
@@ -332,9 +333,10 @@ namespace Tizen.NUI.BaseComponents
         /// Get value by State.
         /// It will traverse from the first item to find proper fit when there is no perfect state match.
         /// </summary>
+        /// <param name="state">The state to query for the value.</param>
+        /// <param name="result">The output parameter to store the resulting value if found.</param>
         /// <exception cref="ArgumentNullException"> Thrown when state is null. </exception>
-        /// <since_tizen> 6 </since_tizen>
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         /// <returns>True if the selector has a given state value, false otherwise.</returns>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool GetValue(ControlState state, out T result)
@@ -390,7 +392,10 @@ namespace Tizen.NUI.BaseComponents
             SelectorItems.Clear();
         }
 
-        /// <inheritdoc/>
+        /// <summary>
+        /// Converts the Selector object to its string representation.
+        /// </summary>
+        /// <returns>A string that represents the current selector.</returns>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public override string ToString()
         {
@@ -408,8 +413,8 @@ namespace Tizen.NUI.BaseComponents
         /// Clone itself.
         /// If type T implements ICloneable, it calls Clone() method to clone values, otherwise use operator=.
         /// </summary>
-        /// <since_tizen> 6 </since_tizen>
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// <returns>A new Selector T instance that is a clone of the current selector.</returns>
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public Selector<T> Clone()
         {
@@ -466,6 +471,8 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Determines whether the specified object is equal to the current object.
         /// </summary>
+        /// <param name="other">The object to compare with the current object.</param>
+        /// <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
         /// <since_tizen> 9 </since_tizen>
         public override bool Equals(object other)
         {
@@ -497,6 +504,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Serves as the default hash function.
         /// </summary>
+        /// <returns>An integer value that specifies the hash code for this instance.</returns>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public override int GetHashCode()
         {
index d7a0b61640d9fc7af788fb7ae5903b5d6add6690..b1fc21ddd17aafdd9de0f63364c9eacfb6f61c8f 100755 (executable)
@@ -23,6 +23,7 @@ namespace Tizen.NUI.BaseComponents
 {
     /// <summary>
     /// The base class of style attributes for a view.
+    /// This class provides a base for defining styles that can be applied to views.
     /// </summary>
     /// <since_tizen> 9 </since_tizen>
     public partial class ViewStyle : BindableObject, IDisposable
@@ -69,11 +70,12 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Create an empty style instance.
+        /// This constructor initializes an empty style object for a view.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public ViewStyle() { }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public ViewStyle(ViewStyle viewAttributes)
         {
@@ -102,7 +104,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(BackgroundImageProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool? Focusable
         {
@@ -133,7 +135,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(FocusableInTouchProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [Obsolete("This has been deprecated. Use Size instead.")]
         [EditorBrowsable(EditorBrowsableState.Never)]
         public Size2D Size2D
@@ -144,6 +146,8 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Defines view's opacity value.
+        /// This property allows you to specify different opacity values for various states of the view,
+        /// such as normal, pressed, focused, etc.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public Selector<float?> Opacity
@@ -156,7 +160,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(OpacityProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [Obsolete("This has been deprecated. Use Position instead.")]
         [EditorBrowsable(EditorBrowsableState.Never)]
         public Position2D Position2D
@@ -232,7 +236,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(PositionProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public float? PositionX
         {
@@ -240,7 +244,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(PositionXProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public float? PositionY
         {
@@ -248,7 +252,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(PositionYProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public Rotation Orientation
         {
@@ -256,7 +260,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(OrientationProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public DrawModeType? DrawMode
         {
@@ -296,7 +300,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(HeightResizePolicyProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool? WidthForHeight
         {
@@ -304,7 +308,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(WidthForHeightProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool? HeightForWidth
         {
@@ -342,7 +346,7 @@ namespace Tizen.NUI.BaseComponents
             set => SetValue(MaximumSizeProperty, value);
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public ClippingModeType? ClippingMode
         {
@@ -396,7 +400,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>View BackgroundBorder</summary>
-        /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public Selector<Rectangle> BackgroundImageBorder
         {
@@ -551,7 +555,8 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Release instance.
+        /// Releases all resources used by the ViewStyle instance.
+        /// The Dispose method releases all resources used by the ViewStyle instance.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public void Dispose()
@@ -600,9 +605,9 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Release instance.
+        /// Releases unmanaged and optionally managed resources.
         /// </summary>
-        /// <param name="disposing"> If it true, the method has been called by a user's code. Otherwise the method has been called by the finalizer. </param>
+        /// <param name="disposing"> If it true, the method has been called by a user's code to release both managed and unmanaged resources. Otherwise the method has been called by the finalizer to release only unmanaged resources.</param>
         /// <since_tizen> 9 </since_tizen>
         protected virtual void Dispose(bool disposing)
         {
index 5c923034a5930b4c3df1a2096d2e6e6626cae31c..72c86b0b77df02ecfccafbb13bf53f7f00afd1ac 100755 (executable)
@@ -275,7 +275,8 @@ namespace Tizen.NUI.BaseComponents
             }
         }
         /// <summary>
-        /// Padding between cells.
+        /// Gets or sets the padding between cells in the TableView.
+        /// The padding vector specifying the horizontal and vertical padding.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public Vector2 CellPadding
@@ -306,7 +307,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The number of layout rows.
+        /// This property allows setting the number of rows in the table view layout, which can affect how child views are arranged within the table.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public PropertyMap LayoutRows
@@ -337,7 +338,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The number of layout columns.
+        /// Gets or sets the number of layout columns.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public PropertyMap LayoutColumns
@@ -747,6 +748,7 @@ namespace Tizen.NUI.BaseComponents
 
             /// <summary>
             /// The default constructor.
+            /// Initializes the cell position with default values.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public CellPosition() : this(Interop.TableView.NewTableViewCellPosition(), true)
@@ -780,7 +782,7 @@ namespace Tizen.NUI.BaseComponents
             }
 
             /// <summary>
-            /// The index or position of a row.
+            /// Gets or sets the index or position of a row.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
             public uint RowIndex
@@ -795,7 +797,7 @@ namespace Tizen.NUI.BaseComponents
 
 
             /// <summary>
-            /// The index of a column.
+            /// Gets or sets the index of a column.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             [Obsolete("Do not use this, that will be deprecated. Use ColumnIndex instead.")]
@@ -816,7 +818,7 @@ namespace Tizen.NUI.BaseComponents
             }
 
             /// <summary>
-            /// The index or position of a column.
+            ///  Gets or sets the index or position of a column.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
             public uint ColumnIndex
@@ -851,7 +853,7 @@ namespace Tizen.NUI.BaseComponents
             }
 
             /// <summary>
-            /// The span of a row.
+            /// Gets or sets the span of a row.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
             public uint RowSpan
@@ -865,7 +867,7 @@ namespace Tizen.NUI.BaseComponents
             }
 
             /// <summary>
-            /// The span of a column.
+            /// Gets or sets the span of a column.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             [Obsolete("Do not use this, that will be deprecated. Use ColumnSpan instead.")]
@@ -886,7 +888,7 @@ namespace Tizen.NUI.BaseComponents
             }
 
             /// <summary>
-            /// The span of a column.
+            /// Gets or sets the span of a column.
             /// </summary>
             /// <since_tizen> 5 </since_tizen>
             public uint ColumnSpan
index b54f67d9668326cbbb8581fbba63c072428d09d1..de14c9b91f91b18b0025f1b7f6ace086c226bf6f 100755 (executable)
@@ -219,6 +219,7 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Creates the TextEditor control.
+        /// This returns a handle to the TextEditor control.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public TextEditor() : this(Interop.TextEditor.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
@@ -931,7 +932,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The CursorWidth property.
+        /// Gets or sets the width of the cursor.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public int CursorWidth
@@ -2497,7 +2498,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The line count of the text.
+        /// Gets the line count of the text.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public int LineCount
@@ -3558,7 +3559,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Select the whole text.
+        /// Selects the entire text within the TextEditor control.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public void SelectWholeText()
@@ -3812,7 +3813,12 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Dispose.
+        /// Releases unmanaged and optionally managed resources.
         /// </summary>
+        /// <remarks>
+        /// When overriding this method, you need to distinguish between explicit and implicit conditions. For explicit conditions, release both managed and unmanaged resources. For implicit conditions, only release unmanaged resources.
+        /// </remarks>
+        /// <param name="type">Explicit to release both managed and unmanaged resources. Implicit to release only unmanaged resources.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void Dispose(DisposeTypes type)
         {
index 9a107f486b92c8469ea438f2b1764eace219ec02..04a1c8918d48e650e229d220d80bff7dd02ff229 100755 (executable)
@@ -26,7 +26,7 @@ namespace Tizen.NUI.BaseComponents
     /// <since_tizen> 3 </since_tizen>
     public partial class TextEditor
     {
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty TextProperty = null;
         
@@ -49,7 +49,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.TEXT);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty TextColorProperty = null;
         
@@ -75,7 +75,7 @@ namespace Tizen.NUI.BaseComponents
             return textEditor.internalTextColor;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty FontFamilyProperty = null;
         
@@ -94,7 +94,7 @@ namespace Tizen.NUI.BaseComponents
             return textEditor.InternalFontFamily;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty FontStyleProperty = null;
         
@@ -115,7 +115,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PointSizeProperty = null;
         
@@ -136,7 +136,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.PointSize);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty HorizontalAlignmentProperty = null;
         
@@ -181,7 +181,7 @@ namespace Tizen.NUI.BaseComponents
             return temp.GetValueByDescription<VerticalAlignment>();
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ScrollThresholdProperty = null;
         
@@ -202,7 +202,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollThreshold);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ScrollSpeedProperty = null;
         
@@ -223,7 +223,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollSpeed);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PrimaryCursorColorProperty = null;
         
@@ -249,7 +249,7 @@ namespace Tizen.NUI.BaseComponents
             return textEditor.internalPrimaryCursorColor;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SecondaryCursorColorProperty = null;
         
@@ -275,7 +275,7 @@ namespace Tizen.NUI.BaseComponents
             return textEditor.internalSecondaryCursorColor;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableCursorBlinkProperty = null;
         
@@ -296,7 +296,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableCursorBlink);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty CursorBlinkIntervalProperty = null;
         
@@ -317,7 +317,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.CursorBlinkInterval);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty CursorBlinkDurationProperty = null;
         
@@ -338,7 +338,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.CursorBlinkDuration);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty CursorWidthProperty = null;
         
@@ -359,7 +359,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textEditor.SwigCPtr, TextEditor.Property.CursorWidth);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty GrabHandleImageProperty = null;
         
@@ -380,7 +380,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.GrabHandleImage);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty GrabHandlePressedImageProperty = null;
         
@@ -421,7 +421,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleImageLeftProperty = null;
         
@@ -442,7 +442,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleImageRightProperty = null;
         
@@ -463,7 +463,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandlePressedImageLeftProperty = null;
         
@@ -484,7 +484,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandlePressedImageRightProperty = null;
         
@@ -505,7 +505,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleMarkerImageLeftProperty = null;
         
@@ -526,7 +526,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleMarkerImageRightProperty = null;
         
@@ -547,7 +547,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHighlightColorProperty = null;
         
@@ -573,7 +573,7 @@ namespace Tizen.NUI.BaseComponents
             return textEditor.internalSelectionHighlightColor;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty DecorationBoundingBoxProperty = null;
         
@@ -594,7 +594,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableMarkupProperty = null;
         
@@ -615,7 +615,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableMarkup);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputColorProperty = null;
         
@@ -641,7 +641,7 @@ namespace Tizen.NUI.BaseComponents
             return textEditor.internalInputColor;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputFontFamilyProperty = null;
         
@@ -662,7 +662,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputFontFamily);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputFontStyleProperty = null;
         
@@ -683,7 +683,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputPointSizeProperty = null;
         
@@ -704,7 +704,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.InputPointSize);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty LineSpacingProperty = null;
         
@@ -725,7 +725,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.LineSpacing);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputLineSpacingProperty = null;
         
@@ -766,7 +766,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.RelativeLineHeight);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty UnderlineProperty = null;
         
@@ -787,7 +787,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputUnderlineProperty = null;
         
@@ -809,7 +809,7 @@ namespace Tizen.NUI.BaseComponents
         }
         
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ShadowProperty = null;
         
@@ -830,7 +830,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputShadowProperty = null;
         
@@ -851,7 +851,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputShadow);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EmbossProperty = null;
         
@@ -872,7 +872,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.EMBOSS);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputEmbossProperty = null;
         
@@ -893,7 +893,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputEmboss);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty OutlineProperty = null;
         
@@ -914,7 +914,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputOutlineProperty = null;
         
@@ -935,7 +935,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputOutline);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SmoothScrollProperty = null;
         
@@ -956,7 +956,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.SmoothScroll);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SmoothScrollDurationProperty = null;
         
@@ -977,7 +977,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.SmoothScrollDuration);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableScrollBarProperty = null;
         
@@ -998,7 +998,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableScrollBar);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ScrollBarShowDurationProperty = null;
         
@@ -1019,7 +1019,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollBarShowDuration);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ScrollBarFadeDurationProperty = null;
         
@@ -1040,7 +1040,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollBarFadeDuration);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PixelSizeProperty = null;
         
@@ -1061,7 +1061,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.PixelSize);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PlaceholderTextProperty = null;
         
@@ -1082,7 +1082,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.PlaceholderText);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PlaceholderTextColorProperty = null;
         
@@ -1108,7 +1108,7 @@ namespace Tizen.NUI.BaseComponents
             return textEditor.internalPlaceholderTextColor;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableSelectionProperty = null;
         
@@ -1129,7 +1129,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableSelection);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PlaceholderProperty = null;
         
@@ -1150,7 +1150,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty LineWrapModeProperty = null;
         
@@ -1171,7 +1171,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textEditor.SwigCPtr, TextEditor.Property.LineWrapMode);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableShiftSelectionProperty = null;
         
@@ -1193,7 +1193,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableShiftSelection);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty MatchSystemLanguageDirectionProperty = null;
         
index 8a37327e04776387a8846ea8a8fedeaa0bd12d9d..dea6e2d856339cf875e0a246464feeaeeb421c27 100755 (executable)
@@ -163,7 +163,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// The MaxLengthReached event.
         /// </summary>
-        /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
         {
@@ -552,7 +552,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// The MaxLengthReached event arguments.
         /// </summary>
-        /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public class MaxLengthReachedEventArgs : EventArgs
         {
@@ -561,7 +561,7 @@ namespace Tizen.NUI.BaseComponents
             /// <summary>
             /// TextEditor.
             /// </summary>
-            /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+            /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
             [EditorBrowsable(EditorBrowsableState.Never)]
             public TextEditor TextEditor
             {
index 364d59ab8290acaa06e34f8ef7eb6f459faaad6e..638115f9838127079373f8bb9c7309ddacfdcb4e 100755 (executable)
@@ -286,7 +286,7 @@ namespace Tizen.NUI.BaseComponents
         /// Creates the TextField with setting the status of shown or hidden.
         /// </summary>
         /// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public TextField(bool shown) : this(Interop.TextField.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
         {
@@ -1301,7 +1301,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The CursorWidth property.
+        /// Gets or sets the width of the cursor.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public int CursorWidth
@@ -2860,7 +2860,7 @@ namespace Tizen.NUI.BaseComponents
         /// Enables the grab handles for text selection.<br />
         /// The default value is true, which means the grab handles are enabled by default.<br />
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool EnableGrabHandle
         {
@@ -2894,7 +2894,7 @@ namespace Tizen.NUI.BaseComponents
         /// Enables the grab handle popup for text selection.<br />
         /// The default value is true, which means the grab handle popup is enabled by default.<br />
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool EnableGrabHandlePopup
         {
@@ -2986,7 +2986,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Enable editing in text control.
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool EnableEditing
         {
@@ -3491,7 +3491,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Enables selection of the text using the Shift key.
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool EnableShiftSelection
         {
@@ -3680,7 +3680,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Select the whole text.
+        /// Selects the entire text within the TextField.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public void SelectWholeText()
@@ -3800,7 +3800,12 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Dispose.
+        /// Releases unmanaged and optionally managed resources.
         /// </summary>
+        /// <remarks>
+        /// When overriding this method, you need to distinguish between explicit and implicit conditions. For explicit conditions, release both managed and unmanaged resources. For implicit conditions, only release unmanaged resources.
+        /// </remarks>
+        /// <param name="type">Explicit to release both managed and unmanaged resources. Implicit to release only unmanaged resources.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void Dispose(DisposeTypes type)
         {
index 2fab5e69c3c17895f8ab91254f7d011c06ae681e..20ff6ad6f2c81f49e817ca85f7414f28f7c5b58f 100755 (executable)
@@ -83,7 +83,7 @@ namespace Tizen.NUI.BaseComponents
             return textField.translatablePlaceholderTextFocused;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty TextProperty = null;
         internal static void SetInternalTextProperty(BindableObject bindable, object oldValue, object newValue)
@@ -104,7 +104,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.TEXT);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PlaceholderTextProperty = null;
         internal static void SetInternalPlaceholderTextProperty(BindableObject bindable, object oldValue, object newValue)
@@ -123,7 +123,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.PlaceholderText);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PlaceholderTextFocusedProperty = null;
         internal static void SetInternalPlaceholderTextFocusedProperty(BindableObject bindable, object oldValue, object newValue)
@@ -142,7 +142,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.PlaceholderTextFocused);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty FontFamilyProperty = null;
         internal static void SetInternalFontFamilyProperty(BindableObject bindable, object oldValue, object newValue)
@@ -159,7 +159,7 @@ namespace Tizen.NUI.BaseComponents
             return textField.InternalFontFamily;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty FontStyleProperty = null;
         internal static void SetInternalFontStyleProperty(BindableObject bindable, object oldValue, object newValue)
@@ -178,7 +178,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PointSizeProperty = null;
         internal static void SetInternalPointSizeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -197,7 +197,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.PointSize);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty MaxLengthProperty = null;
         internal static void SetInternalMaxLengthProperty(BindableObject bindable, object oldValue, object newValue)
@@ -216,7 +216,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.MaxLength);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ExceedPolicyProperty = null;
         internal static void SetInternalExceedPolicyProperty(BindableObject bindable, object oldValue, object newValue)
@@ -235,7 +235,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.ExceedPolicy);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty HorizontalAlignmentProperty = null;
         internal static void SetInternalHorizontalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
@@ -256,7 +256,7 @@ namespace Tizen.NUI.BaseComponents
             return temp.GetValueByDescription<HorizontalAlignment>();
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty VerticalAlignmentProperty = null;
         internal static void SetInternalVerticalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
@@ -277,7 +277,7 @@ namespace Tizen.NUI.BaseComponents
             return temp.GetValueByDescription<VerticalAlignment>();
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty TextColorProperty = null;
         internal static void SetInternalTextColorProperty(BindableObject bindable, object oldValue, object newValue)
@@ -301,7 +301,7 @@ namespace Tizen.NUI.BaseComponents
             return textField.internalTextColor;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PlaceholderTextColorProperty = null;
         internal static void SetInternalPlaceholderTextColorProperty(BindableObject bindable, object oldValue, object newValue)
@@ -363,7 +363,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableGrabHandlePopup);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PrimaryCursorColorProperty = null;
         internal static void SetInternalPrimaryCursorColorProperty(BindableObject bindable, object oldValue, object newValue)
@@ -387,7 +387,7 @@ namespace Tizen.NUI.BaseComponents
             return textField.internalPrimaryCursorColor;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SecondaryCursorColorProperty = null;
         internal static void SetInternalSecondaryCursorColorProperty(BindableObject bindable, object oldValue, object newValue)
@@ -411,7 +411,7 @@ namespace Tizen.NUI.BaseComponents
             return textField.internalSecondaryCursorColor;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableCursorBlinkProperty = null;
         internal static void SetInternalEnableCursorBlinkProperty(BindableObject bindable, object oldValue, object newValue)
@@ -430,7 +430,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableCursorBlink);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty CursorBlinkIntervalProperty = null;
         internal static void SetInternalCursorBlinkIntervalProperty(BindableObject bindable, object oldValue, object newValue)
@@ -449,7 +449,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.CursorBlinkInterval);
         }
         
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty CursorBlinkDurationProperty = null;
         internal static void SetInternalCursorBlinkDurationProperty(BindableObject bindable, object oldValue, object newValue)
@@ -468,7 +468,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.CursorBlinkDuration);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty CursorWidthProperty = null;
         internal static void SetInternalCursorWidthProperty(BindableObject bindable, object oldValue, object newValue)
@@ -487,7 +487,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.CursorWidth);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty GrabHandleImageProperty = null;
         internal static void SetInternalGrabHandleImageProperty(BindableObject bindable, object oldValue, object newValue)
@@ -506,7 +506,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.GrabHandleImage);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty GrabHandlePressedImageProperty = null;
         internal static void SetInternalGrabHandlePressedImageProperty(BindableObject bindable, object oldValue, object newValue)
@@ -525,7 +525,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.GrabHandlePressedImage);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ScrollThresholdProperty = null;
         internal static void SetInternalScrollThresholdProperty(BindableObject bindable, object oldValue, object newValue)
@@ -544,7 +544,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.ScrollThreshold);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ScrollSpeedProperty = null;
         internal static void SetInternalScrollSpeedProperty(BindableObject bindable, object oldValue, object newValue)
@@ -581,7 +581,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleImageLeftProperty = null;
         internal static void SetInternalSelectionHandleImageLeftProperty(BindableObject bindable, object oldValue, object newValue)
@@ -600,7 +600,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleImageRightProperty = null;
         internal static void SetInternalSelectionHandleImageRightProperty(BindableObject bindable, object oldValue, object newValue)
@@ -619,7 +619,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandlePressedImageLeftProperty = null;
         internal static void SetInternalSelectionHandlePressedImageLeftProperty(BindableObject bindable, object oldValue, object newValue)
@@ -638,7 +638,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandlePressedImageRightProperty = null;
         internal static void SetInternalSelectionHandlePressedImageRightProperty(BindableObject bindable, object oldValue, object newValue)
@@ -657,7 +657,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleMarkerImageLeftProperty = null;
         internal static void SetInternalSelectionHandleMarkerImageLeftProperty(BindableObject bindable, object oldValue, object newValue)
@@ -676,7 +676,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHandleMarkerImageRightProperty = null;
         internal static void SetInternalSelectionHandleMarkerImageRightProperty(BindableObject bindable, object oldValue, object newValue)
@@ -695,7 +695,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty SelectionHighlightColorProperty = null;
         internal static void SetInternalSelectionHighlightColorProperty(BindableObject bindable, object oldValue, object newValue)
@@ -719,7 +719,7 @@ namespace Tizen.NUI.BaseComponents
             return textField.internalSelectionHighlightColor;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty DecorationBoundingBoxProperty = null;
         internal static void SetInternalDecorationBoundingBoxProperty(BindableObject bindable, object oldValue, object newValue)
@@ -738,7 +738,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputMethodSettingsProperty = null;
         internal static void SetInternalInputMethodSettingsProperty(BindableObject bindable, object oldValue, object newValue)
@@ -757,7 +757,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputColorProperty = null;
         internal static void SetInternalInputColorProperty(BindableObject bindable, object oldValue, object newValue)
@@ -781,7 +781,7 @@ namespace Tizen.NUI.BaseComponents
             return textField.internalInputColor;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableMarkupProperty = null;
         internal static void SetInternalEnableMarkupProperty(BindableObject bindable, object oldValue, object newValue)
@@ -800,7 +800,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableMarkup);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputFontFamilyProperty = null;
         internal static void SetInternalInputFontFamilyProperty(BindableObject bindable, object oldValue, object newValue)
@@ -819,7 +819,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputFontFamily);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputFontStyleProperty = null;
         internal static void SetInternalInputFontStyleProperty(BindableObject bindable, object oldValue, object newValue)
@@ -838,7 +838,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputPointSizeProperty = null;
         internal static void SetInternalInputPointSizeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -857,7 +857,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.InputPointSize);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty UnderlineProperty = null;
         internal static void SetInternalUnderlineProperty(BindableObject bindable, object oldValue, object newValue)
@@ -876,7 +876,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputUnderlineProperty = null;
         internal static void SetInternalInputUnderlineProperty(BindableObject bindable, object oldValue, object newValue)
@@ -895,7 +895,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputUnderline);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ShadowProperty = null;
         internal static void SetInternalShadowProperty(BindableObject bindable, object oldValue, object newValue)
@@ -914,7 +914,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputShadowProperty = null;
         internal static void SetInternalInputShadowProperty(BindableObject bindable, object oldValue, object newValue)
@@ -933,7 +933,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputShadow);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EmbossProperty = null;
         internal static void SetInternalEmbossProperty(BindableObject bindable, object oldValue, object newValue)
@@ -952,7 +952,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.EMBOSS);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputEmbossProperty = null;
         internal static void SetInternalInputEmbossProperty(BindableObject bindable, object oldValue, object newValue)
@@ -971,7 +971,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputEmboss);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty OutlineProperty = null;
         internal static void SetInternalOutlineProperty(BindableObject bindable, object oldValue, object newValue)
@@ -990,7 +990,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty InputOutlineProperty = null;
         internal static void SetInternalInputOutlineProperty(BindableObject bindable, object oldValue, object newValue)
@@ -1009,7 +1009,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputOutline);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty HiddenInputSettingsProperty = null;
         internal static void SetInternalHiddenInputSettingsProperty(BindableObject bindable, object oldValue, object newValue)
@@ -1028,7 +1028,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PixelSizeProperty = null;
         internal static void SetInternalPixelSizeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -1047,7 +1047,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.PixelSize);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableSelectionProperty = null;
         internal static void SetInternalEnableSelectionProperty(BindableObject bindable, object oldValue, object newValue)
@@ -1066,7 +1066,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableSelection);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PlaceholderProperty = null;
         internal static void SetInternalPlaceholderProperty(BindableObject bindable, object oldValue, object newValue)
@@ -1085,7 +1085,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EllipsisProperty = null;
         internal static void SetInternalEllipsisProperty(BindableObject bindable, object oldValue, object newValue)
@@ -1123,7 +1123,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.EllipsisPosition);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableShiftSelectionProperty = null;
         internal static void SetInternalEnableShiftSelectionProperty(BindableObject bindable, object oldValue, object newValue)
@@ -1142,7 +1142,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableShiftSelection);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty MatchSystemLanguageDirectionProperty = null;
         internal static void SetInternalMatchSystemLanguageDirectionProperty(BindableObject bindable, object oldValue, object newValue)
index 2999f1f8e83a3b6c29fe4f58632b77557823c8ee..54ad326ffbeedbd361fdd8e4e40440a368af247d 100755 (executable)
@@ -74,7 +74,7 @@ namespace Tizen.NUI.BaseComponents
         private bool invokeTextChanged = true;
 
         /// <summary>
-        /// The TextChanged event.
+        /// The TextChanged event is triggered whenever the text in the TextField changes.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public event EventHandler<TextChangedEventArgs> TextChanged
@@ -124,7 +124,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The MaxLengthReached event.
+        /// The MaxLengthReached event is triggered when the text entered in the TextField exceeds its maximum allowed length.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
@@ -429,7 +429,7 @@ namespace Tizen.NUI.BaseComponents
             private TextField textField;
 
             /// <summary>
-            /// TextField.
+            /// Gets or sets TextField.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public TextField TextField
@@ -454,7 +454,7 @@ namespace Tizen.NUI.BaseComponents
             private TextField textField;
 
             /// <summary>
-            /// TextField.
+            /// Gets or sets TextField.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public TextField TextField
index 186470e773ceb972ce03120ed9222c5b456562d9..d1e033ecd49bb8f8a24fbf63bbaed3b80016995b 100755 (executable)
@@ -256,7 +256,7 @@ namespace Tizen.NUI.BaseComponents
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public TextLabel(TextLabelStyle viewStyle) : this(Interop.TextLabel.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true, viewStyle)
         {
@@ -266,7 +266,7 @@ namespace Tizen.NUI.BaseComponents
         /// Creates the TextLabel with setting the status of shown or hidden.
         /// </summary>
         /// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public TextLabel(bool shown) : this(Interop.TextLabel.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
         {
@@ -290,7 +290,7 @@ namespace Tizen.NUI.BaseComponents
         /// </summary>
         /// <param name="text">The text to display</param>
         /// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public TextLabel(string text, bool shown) : this(Interop.TextLabel.New(text, ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
         {
@@ -1966,7 +1966,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The line count of the text.
+        /// Gets the line count of the text.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public int LineCount
@@ -2017,7 +2017,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// The direction of the text such as left to right or right to left.
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public TextDirection TextDirection
         {
@@ -2035,7 +2035,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// The vertical line alignment of the text.
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public VerticalLineAlignment VerticalLineAlignment
         {
@@ -2106,7 +2106,7 @@ namespace Tizen.NUI.BaseComponents
         /// <item><term>fontSize (string)</term><description>The size type of font, You can choose between "pointSize" or "pixelSize". (the default value is "pointSize")</description></item>
         /// </list>
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
         public PropertyMap TextFit
@@ -2295,7 +2295,7 @@ namespace Tizen.NUI.BaseComponents
         /// The height of the line in points. <br />
         /// If the font size is larger than the line size, it works with the font size. <br />
         /// </summary>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public float MinLineSize
         {
index 7fa40904c24e4a16585629ff9a25a57f922e933d..1f34d22c221e178634c000c401503010184dd19c 100755 (executable)
@@ -53,7 +53,7 @@ namespace Tizen.NUI.BaseComponents
             return textLabel.translatableText;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty TextProperty = null;
         internal static void SetInternalTextProperty(BindableObject bindable, object oldValue, object newValue)
@@ -78,7 +78,7 @@ namespace Tizen.NUI.BaseComponents
             return textLabel.textIsEmpty ? "" : Object.InternalGetPropertyString(textLabel.SwigCPtr, TextLabel.Property.TEXT);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty FontFamilyProperty = null;
         internal static void SetInternalFontFamilyProperty(BindableObject bindable, object oldValue, object newValue)
@@ -101,7 +101,7 @@ namespace Tizen.NUI.BaseComponents
             return textLabel.InternalFontFamily;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty FontStyleProperty = null;
         internal static void SetInternalFontStyleProperty(BindableObject bindable, object oldValue, object newValue)
@@ -121,7 +121,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PointSizeProperty = null;
         internal static void SetInternalPointSizeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -145,7 +145,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.PointSize);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty MultiLineProperty = null;
         internal static void SetInternalMultiLineProperty(BindableObject bindable, object oldValue, object newValue)
@@ -165,7 +165,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.MultiLine);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty HorizontalAlignmentProperty = null;
         internal static void SetInternalHorizontalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
@@ -202,7 +202,7 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty VerticalAlignmentProperty = null;
         internal static void SetInternalVerticalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
@@ -239,7 +239,7 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty TextColorProperty = null;
         internal static void SetInternalTextColorProperty(BindableObject bindable, object oldValue, object newValue)
@@ -352,7 +352,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.RemoveBackInset);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableMarkupProperty = null;
         internal static void SetInternalEnableMarkupProperty(BindableObject bindable, object oldValue, object newValue)
@@ -371,7 +371,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.EnableMarkup);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EnableAutoScrollProperty = null;
         internal static void SetInternalEnableAutoScrollProperty(BindableObject bindable, object oldValue, object newValue)
@@ -390,7 +390,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.EnableAutoScroll);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty AutoScrollSpeedProperty = null;
         internal static void SetInternalAutoScrollSpeedProperty(BindableObject bindable, object oldValue, object newValue)
@@ -409,7 +409,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.AutoScrollSpeed);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty AutoScrollLoopCountProperty = null;
         internal static void SetInternalAutoScrollLoopCountProperty(BindableObject bindable, object oldValue, object newValue)
@@ -428,7 +428,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.AutoScrollLoopCount);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty AutoScrollGapProperty = null;
         internal static void SetInternalAutoScrollGapProperty(BindableObject bindable, object oldValue, object newValue)
@@ -447,7 +447,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.AutoScrollGap);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty LineSpacingProperty = null;
         internal static void SetInternalLineSpacingProperty(BindableObject bindable, object oldValue, object newValue)
@@ -485,7 +485,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.RelativeLineHeight);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty UnderlineProperty = null;
         internal static void SetInternalUnderlineProperty(BindableObject bindable, object oldValue, object newValue)
@@ -504,7 +504,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty ShadowProperty = null;
         internal static void SetInternalShadowProperty(BindableObject bindable, object oldValue, object newValue)
@@ -523,7 +523,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty TextShadowProperty = null;
         internal static void SetInternalTextShadowProperty(BindableObject bindable, object oldValue, object newValue)
@@ -548,7 +548,7 @@ namespace Tizen.NUI.BaseComponents
             return temp.Empty() ? null : new TextShadow(temp);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EmbossProperty = null;
         internal static void SetInternalEmbossProperty(BindableObject bindable, object oldValue, object newValue)
@@ -567,7 +567,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyString(textLabel.SwigCPtr, TextLabel.Property.EMBOSS);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty OutlineProperty = null;
         internal static void SetInternalOutlineProperty(BindableObject bindable, object oldValue, object newValue)
@@ -586,7 +586,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty PixelSizeProperty = null;
         internal static void SetInternalPixelSizeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -610,7 +610,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.PixelSize);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty EllipsisProperty = null;
         internal static void SetInternalEllipsisProperty(BindableObject bindable, object oldValue, object newValue)
@@ -648,7 +648,7 @@ namespace Tizen.NUI.BaseComponents
             return (EllipsisPosition)Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.EllipsisPosition);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty AutoScrollLoopDelayProperty = null;
         internal static void SetInternalAutoScrollLoopDelayProperty(BindableObject bindable, object oldValue, object newValue)
@@ -667,7 +667,7 @@ namespace Tizen.NUI.BaseComponents
             return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.AutoScrollLoopDelay);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty AutoScrollStopModeProperty = null;
         internal static void SetInternalAutoScrollStopModeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -688,7 +688,7 @@ namespace Tizen.NUI.BaseComponents
             return temp.GetValueByDescription<AutoScrollStopMode>();
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty LineWrapModeProperty = null;
         internal static void SetInternalLineWrapModeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -707,7 +707,7 @@ namespace Tizen.NUI.BaseComponents
             return (LineWrapMode)Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.LineWrapMode);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty VerticalLineAlignmentProperty = null;
         internal static void SetInternalVerticalLineAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
@@ -726,7 +726,7 @@ namespace Tizen.NUI.BaseComponents
             return (VerticalLineAlignment)Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.VerticalLineAlignment);
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static readonly BindableProperty MatchSystemLanguageDirectionProperty = null;
         internal static void SetInternalMatchSystemLanguageDirectionProperty(BindableObject bindable, object oldValue, object newValue)
index 7dfb793d86745ca4598433093028b652e0c2ca36..11d0ff592b5189b5c259fc69499f91cd87b1767f 100755 (executable)
@@ -29,8 +29,10 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
         private Color color; //The color value.
 
         /// <summary>
-        /// Initialize ColorStop.
+        /// Initializes a new instance of the ColorStop class with the specified offset and color.
         /// </summary>
+        /// <param name="offset">The offset at which the color stop applies.</param>
+        /// <param name="color">The color to apply at the specified offset.</param>
         /// <since_tizen> 9 </since_tizen>
         public ColorStop(float offset, Color color)
         {
@@ -39,7 +41,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
         }
 
         /// <summary>
-        /// The relative position of the color. 
+        /// Gets or sets the relative position of the color stop along the gradient line.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public float Offset
@@ -55,7 +57,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
         }
 
         /// <summary>
-        /// The color value.
+        /// Gets or sets the color value of the gradient stop.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public Color Color
index 8ac8df3bd6092a3c60c2b3082d0c095f9be9155d..4e0f98e0d634ae4953649f8fd5c4c63e67f8d21d 100755 (executable)
@@ -54,6 +54,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
 
         /// <summary>
         /// The commands array.
+        /// This property returns an enumerable collection of PathCommandType representing the path commands.
         /// </summary>
         /// <exception cref="ArgumentNullException"> Thrown when commands is null. </exception>
         /// <since_tizen> 9 </since_tizen>
@@ -75,6 +76,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
 
         /// <summary>
         /// The points array
+        /// This returns an enumerable collection of floating-point numbers representing the points.
         /// </summary>
         /// <exception cref="ArgumentNullException"> Thrown when points is null. </exception>
         /// <since_tizen> 9 </since_tizen>
index 90735a3a5006a0b5e42092c3f1b90c343e776902..0926032537179a1a0c51481922b8193d2fd2cae9 100755 (executable)
@@ -29,6 +29,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
     {
         /// <summary>
         /// Creates an initialized Picture.
+        /// This constructor initializes a new instance of the Picture class.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public Picture() : this(Interop.Picture.New(), true)
index 56f9941621a83fb64143c055d31ed3da9ed5022a..0a28f205d9799826ea31ec1987dcf86318c4ad50 100755 (executable)
@@ -35,6 +35,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
 
         /// <summary>
         /// Creates an initialized Shape.
+        /// This constructor initializes a new instance of the Shape class.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public Shape() : this(Interop.Shape.New(), true)
@@ -100,7 +101,8 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
         }
 
         /// <summary>
-        /// The current fill rule of the shape.
+        /// Gets or sets the fill rule type for the shape.
+        /// The fill rule type which determines how the interior of a shape is determined.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public FillRuleType FillRule
index 3546a45c14469a60f5352f34e5856b575ae01a81..42534a020066a49f7e83e47d3c35b5e115dbff97 100755 (executable)
@@ -27,7 +27,7 @@ namespace Tizen.NUI.BaseComponents
     /// <since_tizen> 3 </since_tizen>
     public class VideoView : View
     {
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty VideoProperty = null;
         internal static void SetInternalVideoProperty(BindableObject bindable, object oldValue, object newValue)
@@ -46,7 +46,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty LoopingProperty = null;
         internal static void SetInternalLoopingProperty(BindableObject bindable, object oldValue, object newValue)
@@ -65,7 +65,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty MutedProperty = null;
         internal static void SetInternalMutedProperty(BindableObject bindable, object oldValue, object newValue)
@@ -84,7 +84,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty VolumeProperty = null;
         internal static void SetInternalVolumeProperty(BindableObject bindable, object oldValue, object newValue)
@@ -103,7 +103,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty UnderlayProperty = null;
         internal static void SetInternalUnderlayProperty(BindableObject bindable, object oldValue, object newValue)
@@ -122,7 +122,7 @@ namespace Tizen.NUI.BaseComponents
             return temp;
         }
 
-        /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static BindableProperty ResourceUrlProperty = null;
         internal static void SetInternalResourceUrlProperty(BindableObject bindable, object oldValue, object newValue)
@@ -533,8 +533,12 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Dispose.
+        /// Releases unmanaged and optionally managed resources.
         /// </summary>
-        /// <param name="type">DisposeTypes</param>
+        /// <remarks>
+        /// When overriding this method, you need to distinguish between explicit and implicit conditions. For explicit conditions, release both managed and unmanaged resources. For implicit conditions, only release unmanaged resources.
+        /// </remarks>
+        /// <param name="type">Explicit to release both managed and unmanaged resources. Implicit to release only unmanaged resources.</param>
         /// <since_tizen> 3 </since_tizen>
         protected override void Dispose(DisposeTypes type)
         {
index d0fa08a5587e15fec172ebcdff599d0587523002..91b7a75cbb7a22aca72c20563c2306d20e370127 100755 (executable)
@@ -493,6 +493,7 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Creates a new instance of a view.
+        /// The default constructor for the View class.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public View() : this(ViewAccessibilityMode.Default)
@@ -505,7 +506,7 @@ namespace Tizen.NUI.BaseComponents
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public View(ViewStyle viewStyle) : this(Interop.View.New(), true, viewStyle)
         {
@@ -515,7 +516,7 @@ namespace Tizen.NUI.BaseComponents
         /// Create a new instance of a View with setting the status of shown or hidden.
         /// </summary>
         /// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
-        /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+        /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
         [EditorBrowsable(EditorBrowsableState.Never)]
         public View(bool shown) : this(Interop.View.New(), true)
         {
@@ -571,7 +572,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Flag to indicate if layout set explicitly via API call or View was automatically given a Layout.
         /// </summary>
-        /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool LayoutSet
         {
@@ -586,7 +587,7 @@ namespace Tizen.NUI.BaseComponents
         /// Once a View has a Layout set then any children added to Views from then on will receive
         /// automatic Layouts.
         /// </summary>
-        /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static bool LayoutingDisabled { get; set; } = true;
 
@@ -638,7 +639,7 @@ namespace Tizen.NUI.BaseComponents
         /// please set <see cref="EnableControlState"/> to true.
         /// </summary>
         /// <exception cref="ArgumentNullException"> Thrown when set null. </exception>
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public ControlState ControlState
         {
@@ -766,7 +767,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Gets / Sets the status of whether the view is excluded from its parent's layouting or not.
         /// </summary>
-        /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool ExcludeLayouting
         {
@@ -980,7 +981,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Get or set the border of background image.
         /// </summary>
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public Rectangle BackgroundImageBorder
         {
@@ -1010,7 +1011,8 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The background of view.
+        /// Gets or sets the background of the view.
+        /// This property value is the PropertyMap representing the background.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public Tizen.NUI.PropertyMap Background
@@ -1398,7 +1400,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// The current state of the view.
+        /// Gets or sets the current state of the view.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public States State
@@ -1488,6 +1490,7 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Displays a tooltip
+        /// This property allows setting the tooltip properties such as text.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public Tizen.NUI.PropertyMap Tooltip
@@ -3492,8 +3495,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Gets the view's ID.
-        /// Read-only
+        /// Gets The unique identifier of the view. (Read-only)
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public uint ID
@@ -3999,7 +4001,7 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        ///  Gets or sets the status of whether the width size is dependent on the height size.
+        /// Gets or sets the status of whether the width size is dependent on the height size.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public bool WidthForHeight
@@ -5219,7 +5221,7 @@ namespace Tizen.NUI.BaseComponents
         ///  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.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool BackgroundImageSynchronosLoading
         {
@@ -5274,7 +5276,7 @@ namespace Tizen.NUI.BaseComponents
         ///  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_7.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool BackgroundImageSynchronousLoading
         {
@@ -5336,7 +5338,7 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public Vector4 UpdateAreaHint
         {
@@ -5638,7 +5640,7 @@ namespace Tizen.NUI.BaseComponents
         /// Determines which blend equation will be used to render renderers of this actor.
         /// </summary>
         /// <returns>blend equation enum currently assigned</returns>
-        /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public BlendEquationType BlendEquation
         {
index 954bb1a47b74b124398412a42fefde468c85fda4..aa9392309cdcaedf95864da6fb3a201bcb092c32 100755 (executable)
@@ -303,6 +303,7 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Clears the background.
+        /// This method removes any background properties set on the view, such as color or image.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public void ClearBackground()
@@ -437,6 +438,7 @@ namespace Tizen.NUI.BaseComponents
         /// </summary>
         /// <remarks>Most resources are only loaded when the control is placed on the stage.
         /// </remarks>
+        /// <returns>True if all resources are ready, otherwise false.</returns>
         /// <since_tizen> 3 </since_tizen>
         public bool IsResourceReady()
         {
@@ -623,6 +625,11 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
+        /// <summary>
+        /// Adds a renderer to the view.
+        /// </summary>
+        /// <param name="renderer">The renderer to add.</param>
+        /// <returns>The index of the Renderer that was added to the view.</returns>
         /// <since_tizen> 3 </since_tizen>
         public uint AddRenderer(Renderer renderer)
         {
@@ -632,6 +639,14 @@ namespace Tizen.NUI.BaseComponents
             return ret;
         }
 
+        /// <summary>
+        /// Retrieves the renderer at the specified index.
+        /// </summary>
+        /// <param name="index">The index of the renderer to retrieve.</param>
+        /// <returns>A Renderer object at the specified index.</returns>
+        /// <remarks>
+        /// The index must be between 0 and GetRendererCount()-1
+        /// </remarks>
         /// <since_tizen> 3 </since_tizen>
         public Renderer GetRendererAt(uint index)
         {
@@ -649,6 +664,10 @@ namespace Tizen.NUI.BaseComponents
             return ret;
         }
 
+        /// <summary>
+        /// Removes the specified renderer from the view.
+        /// </summary>
+        /// <param name="renderer">The renderer to remove.</param>
         /// <since_tizen> 3 </since_tizen>
         public void RemoveRenderer(Renderer renderer)
         {
@@ -657,6 +676,10 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
+        /// <summary>
+        /// Removes a renderer at the specified index from the view.
+        /// </summary>
+        /// <param name="index">The index of the renderer to remove.</param>
         /// <since_tizen> 3 </since_tizen>
         public void RemoveRenderer(uint index)
         {
@@ -665,7 +688,7 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void RotateBy(Degree angle, Vector3 axis)
         {
@@ -674,7 +697,7 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void RotateBy(Radian angle, Vector3 axis)
         {
@@ -683,7 +706,7 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void RotateBy(Rotation relativeRotation)
         {
@@ -692,7 +715,7 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void ScaleBy(Vector3 relativeScale)
         {
@@ -710,7 +733,7 @@ namespace Tizen.NUI.BaseComponents
         /// <param name="up">The up vector after target look at. If it is null, up vector become +Y axis</param>
         /// <param name="localForward">The forward vector of view when it's orientation is not applied. If it is null, localForward vector become +Z axis</param>
         /// <param name="localUp">The up vector of view when it's orientation is not applied. If it is null, localUp vector become +Y axis</param>
-        /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void LookAt(Vector3 target, Vector3 up = null, Vector3 localForward = null, Vector3 localUp = null)
         {
@@ -719,7 +742,7 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void SetColorMode(ColorMode colorMode)
         {
@@ -728,7 +751,7 @@ namespace Tizen.NUI.BaseComponents
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+        /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void ObjectDump()
         {