[ElmSharp] Modify source file mode (#621)
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / Rectangle.cs
old mode 100755 (executable)
new mode 100644 (file)
index 7af4ef7..ac65d0f
@@ -19,14 +19,16 @@ using System;
 namespace ElmSharp
 {
     /// <summary>
-    /// The Rectangle is a class that used to draw a solid colored rectangle.
+    /// The Rectangle is a class that is used to draw a solid colored rectangle.
     /// </summary>
+    /// <since_tizen> preview </since_tizen>
     public class Rectangle : EvasObject
     {
         /// <summary>
         /// Creates and initializes a new instance of the Rectangle class.
         /// </summary>
-        /// <param name="parent">The <see cref="EvasObject"/> to which the new Slider will be attached as a child.</param>
+        /// <param name="parent">The <see cref="EvasObject"/> to which the new slider will be attached as a child.</param>
+        /// <since_tizen> preview </since_tizen>
         public Rectangle(EvasObject parent) : base(parent)
         {
             Interop.Evas.evas_object_size_hint_weight_set(Handle, 1.0, 1.0);
@@ -35,8 +37,9 @@ namespace ElmSharp
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
+        /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
             IntPtr evas = Interop.Evas.evas_object_evas_get(parent.Handle);