From ee5b50e2924dc2a2feb12d68728ca2822484f535 Mon Sep 17 00:00:00 2001 From: Surbhi Gupta <35525588+surbhig12@users.noreply.github.com> Date: Tue, 4 Sep 2018 06:07:52 +0530 Subject: [PATCH] English Review: NUI_BaseComponents (#422) --- src/Tizen.NUI/src/public/BaseComponents/ImageView.cs | 12 ++++++------ src/Tizen.NUI/src/public/BaseComponents/TableView.cs | 4 ++-- src/Tizen.NUI/src/public/BaseComponents/TextField.cs | 2 +- src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs | 4 ++-- src/Tizen.NUI/src/public/BaseComponents/View.cs | 20 ++++++++++---------- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs index b7fe237..ae2d0cc 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs @@ -400,7 +400,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Force reloading of the image, all visuals using this image will get the latest one. + /// Forcefully reloads the image. All the visuals using this image will reload to the latest image. /// /// 5 public void Reload() @@ -409,7 +409,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Play the animated GIF. This is also Default playback mode. + /// Plays the animated GIF. This is also the default playback mode. /// /// 5 public void Play() @@ -418,7 +418,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Pause the animated GIF. + /// Pauses the animated GIF. /// /// 5 public void Pause() @@ -427,7 +427,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Stop the animated GIF. + /// Stops the animated GIF. /// /// 5 public void Stop() @@ -606,7 +606,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Gets or sets whether to correct orientation of image automatically.
+ /// Gets or sets whether to automatically correct the orientation of an image.
///
/// 5 public bool OrientationCorrection @@ -624,7 +624,7 @@ namespace Tizen.NUI.BaseComponents /// - /// Get the loading state of the visual resource. + /// Gets the loading state of the visual resource. /// /// 5 public ImageView.LoadingStatusType LoadingStatus diff --git a/src/Tizen.NUI/src/public/BaseComponents/TableView.cs b/src/Tizen.NUI/src/public/BaseComponents/TableView.cs index a43c8d2..edfdb3b 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TableView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TableView.cs @@ -366,7 +366,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// The index of a row. + /// The index or position of a row. /// /// 5 /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API. @@ -404,7 +404,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// The index of a column. + /// The index or position of a column. /// /// 5 /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API. diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs index 103901e..8b8eddf 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs @@ -2293,7 +2293,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Enables Text selection using Shift key. + /// Enables selection of the text using the Shift key. /// /// 5 /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API. diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs b/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs index 5c067e0..1f6e3cb 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs @@ -1274,7 +1274,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// The text direction. + /// The direction of the text such as left to right or right to left. /// /// 5 /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API. @@ -1290,7 +1290,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// The text vertical line alignment. + /// The vertical line alignment of the text. /// /// 5 /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API. diff --git a/src/Tizen.NUI/src/public/BaseComponents/View.cs b/src/Tizen.NUI/src/public/BaseComponents/View.cs index a7aabe0..fc71eac 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/View.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/View.cs @@ -1239,7 +1239,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Event argument passed through ChildAdded event + /// Event argument passed through the ChildAdded event. /// /// 5 /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API. @@ -1247,14 +1247,14 @@ namespace Tizen.NUI.BaseComponents public class ChildAddedEventArgs : EventArgs { /// - /// Added child View at moment + /// Added child view at moment. /// /// 5 public View Added { get; set; } } /// - /// Event when a child is added + /// Event when a child is added. /// /// 5 /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API. @@ -1312,7 +1312,7 @@ namespace Tizen.NUI.BaseComponents } /// - /// Event argument passed through ChildRemoved event + /// Event argument passed through the ChildRemoved event. /// /// 5 /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API. @@ -1320,14 +1320,14 @@ namespace Tizen.NUI.BaseComponents public class ChildRemovedEventArgs : EventArgs { /// - /// Removed child View at moment + /// Removed child view at moment. /// /// 5 public View Removed { get; set; } } /// - /// Event when a child is removed + /// Event when a child is removed. /// /// 5 /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API. @@ -3687,10 +3687,10 @@ namespace Tizen.NUI.BaseComponents } /// - /// Gets the parent layer of this view.If a view has no parent, this method does nothing. + /// Gets the parent layer of this view.If a view has no parent, this method does not do anything. /// ///
The view has been initialized. 
- /// the parent layer of view + /// The parent layer of view /// 5 public Layer GetLayer() { @@ -5392,10 +5392,10 @@ namespace Tizen.NUI.BaseComponents /// /// Perform an action on a visual registered to this view.
- /// Visuals will have actions, this API is used to perform one of these actions with the given attributes. + /// Visuals will have actions. This API is used to perform one of these actions with the given attributes. ///
/// The Property index of the visual. - /// The action to perform. See Visual to find supported actions. + /// The action to perform. See Visual to find the supported actions. /// Optional attributes for the action. /// 5 public void DoAction(int propertyIndexOfVisual, int propertyIndexOfActionId, PropertyValue attributes) -- 2.7.4