Release 4.0.0-preview1-00235
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / UIComponents / RadioButton.cs
index d082422..8785870 100755 (executable)
@@ -18,17 +18,17 @@ namespace Tizen.NUI.UIComponents
 {
 
     /// <summary>
-    /// A RadioButton provides a radio button which two states \e selected or \e unselected.<br>
-    /// Radio buttons are designed to select one of many option at the same time.<br>
-    /// RadioButton can change its current state using Selected.<br>
+    /// A RadioButton provides a radio button with two states, \e selected or \e unselected.<br>
+    /// Radio buttons are designed to select one of the many options at the same time.<br>
+    /// A RadioButton can change its current state using the selected.<br>
     /// <br>
     /// RadioButtons can be grouped.<br>
     /// Two or more RadioButtons are in one group when they have this same parent.<br>
     /// In each groups only one RadioButton can be \e selected at a given time.<br>
-    /// So when RadioButton is set to \e selected, other RadioButtons in its group are set to \e unselected.<br>
-    /// When \e selected RadioButton is set to \e unselected no other RadioButtons in his group is set to \e selected.<br>
+    /// So when RadioButton is set to \e selected, other RadioButtons in its group are set to \e unselected.<br>
+    /// When \e selected RadioButton is set to \e unselected, no other RadioButtons in this group are set to \e selected.<br>
     /// <br>
-    ///  A StateChanged Event is emitted when the RadioButton change its state to \e selected or \e unselected.<br>
+    /// The StateChanged event is emitted when the RadioButton change its state to \e selected or \e unselected.<br>
     /// </summary>
     public class RadioButton : Button
     {
@@ -45,7 +45,7 @@ namespace Tizen.NUI.UIComponents
         }
 
         /// <summary>
-        /// To make RadioButton instance be disposed.
+        /// To dispose the RadioButton instance.
         /// </summary>
         protected override void Dispose(DisposeTypes type)
         {
@@ -79,7 +79,7 @@ namespace Tizen.NUI.UIComponents
             base.Dispose(type);
         }
         /// <summary>
-        /// Creates an uninitialized RadioButton
+        /// Creates an uninitialized RadioButton.
         /// </summary>
         public RadioButton() : this(NDalicPINVOKE.RadioButton_New__SWIG_0(), true)
         {
@@ -88,9 +88,9 @@ namespace Tizen.NUI.UIComponents
         }
 
         /// <summary>
-        /// Creates an uninitialized RadioButton with Label
+        /// Creates an uninitialized RadioButton with the label.
         /// </summary>
-        /// <param name="label">Label text</param>
+        /// <param name="label">The label text.</param>
         public RadioButton(string label) : this(NDalicPINVOKE.RadioButton_New__SWIG_1(label), true)
         {
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();