[NUI] fix Document related the part of window (#1078)
authortscholb <scholb.kim@samsung.com>
Tue, 15 Oct 2019 09:01:25 +0000 (18:01 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 15 Oct 2019 09:01:25 +0000 (18:01 +0900)
src/Tizen.NUI/src/public/Window.cs
src/Tizen.NUI/src/public/WindowEvent.cs

index 1dc79f6..2e7d4b6 100755 (executable)
@@ -63,7 +63,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Creates a new Window.<br />
+        /// Creates a new Window with a specific name.<br />
         /// This creates an extra window in addition to the default main window<br />
         /// </summary>
         /// <param name="name">The name for extra window. </param>
index 19e330f..a782be8 100755 (executable)
@@ -86,10 +86,10 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// This event is emitted when the screen is touched and when the touch ends.<br />
-        /// If there are multiple touch points, then this will be emitted when the first touch occurs and
-        /// then when the last finger is lifted.<br />
-        /// An interrupted event will also be emitted (if it occurs).<br />
+        /// Emits the event when the screen is touched and when the touch ends.<br />
+        /// If there are multiple touch points then it is emitted when the first touch occurs and
+        /// when the last finger is lifted too.<br />
+        /// Even though incoming events are interrupted, the event occurs.<br />
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public event EventHandler<TouchEventArgs> TouchEvent
@@ -114,7 +114,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// This event is emitted when the wheel event is received.
+        /// Emits the event when the wheel event is received.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public event EventHandler<WheelEventArgs> WheelEvent
@@ -139,7 +139,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// This event is emitted when the key event is received.
+        /// Emits the event when the key event is received.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public event EventHandler<KeyEventArgs> KeyEvent
@@ -164,7 +164,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// This event is emitted when the window resized.
+        /// Emits the event when the window resized.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public event EventHandler<ResizedEventArgs> Resized