From 0b7b9d1f586fcb7f64ea9de2036d9a8512f577df Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Fri, 10 Sep 2021 14:35:23 +0900 Subject: [PATCH] [NUI] Open BorderlineWidth / Color / Offset APIs Signed-off-by: Eunki, Hong --- .../src/public/BaseComponents/Style/ViewStyle.cs | 14 +++++++------- src/Tizen.NUI/src/public/BaseComponents/View.cs | 19 ++++++++----------- 2 files changed, 15 insertions(+), 18 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs b/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs index ebef207..6ea7ad4 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs @@ -457,7 +457,7 @@ namespace Tizen.NUI.BaseComponents /// /// The width for the borderline of the View. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public float? BorderlineWidth { get => (float?)GetValue(BorderlineWidthProperty); @@ -467,7 +467,7 @@ namespace Tizen.NUI.BaseComponents /// /// The color for the borderline of the View. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public Color BorderlineColor { get => (Color)GetValue(BorderlineColorProperty); @@ -476,12 +476,12 @@ namespace Tizen.NUI.BaseComponents /// /// The Relative offset for the borderline of the View. - /// recommand [-1.0f to 1.0f] range. - /// If -1.0f, borderline draw inside of View. - /// If 1.0f, borderline draw outside of View. - /// If 0.0f, borderline draw half at inside and half at outside. + /// Recommended range : [-1.0f to 1.0f]. + /// If -1.0f, draw borderline inside of the View. + /// If 1.0f, draw borderline outside of the View. + /// If 0.0f, draw borderline half inside and half outside. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public float? BorderlineOffset { get => (float?)GetValue(BorderlineOffsetProperty); diff --git a/src/Tizen.NUI/src/public/BaseComponents/View.cs b/src/Tizen.NUI/src/public/BaseComponents/View.cs index e0ddc66..68f8732 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/View.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/View.cs @@ -518,7 +518,6 @@ namespace Tizen.NUI.BaseComponents /// /// The width for the borderline of the View. - /// Note that, an image background may not have borderline if it uses a Border property. /// /// /// @@ -527,9 +526,9 @@ namespace Tizen.NUI.BaseComponents /// animation.AnimateTo(view, "BorderlineWidth", 100.0f); /// /// + /// Note that, an image background may not have borderline if it uses the Border property. /// - /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public float BorderlineWidth { get @@ -555,8 +554,7 @@ namespace Tizen.NUI.BaseComponents /// /// /// - /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public Color BorderlineColor { get @@ -572,10 +570,10 @@ namespace Tizen.NUI.BaseComponents /// /// The Relative offset for the borderline of the View. - /// recommand [-1.0f to 1.0f] range. - /// If -1.0f, borderline draw inside of View. - /// If 1.0f, borderline draw outside of View. - /// If 0.0f, borderline draw half at inside and half at outside. + /// Recommended range : [-1.0f to 1.0f]. + /// If -1.0f, draw borderline inside of the View. + /// If 1.0f, draw borderline outside of the View. + /// If 0.0f, draw borderline half inside and half outside. /// It is 0.0f by default. /// /// @@ -586,8 +584,7 @@ namespace Tizen.NUI.BaseComponents /// /// /// - /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public float BorderlineOffset { get -- 2.7.4