summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeonghyun Yun <jh0506.yun@samsung.com>2017-03-19 19:07:28 -0700
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2017-03-19 19:07:28 -0700
commit1aec05315400d6047ab5da1eb016906ac10cd81b (patch)
treeaff346c2fded3a0b34c73fd6159c62f8e0f4cbb2
parentfe1f258ac0a8054f1f8cd469b1903c0801c11228 (diff)
parent4c54a249187fc00f353f638c1dfc463d0e72c888 (diff)
downloadelm-sharp-1aec05315400d6047ab5da1eb016906ac10cd81b.tar.gz
elm-sharp-1aec05315400d6047ab5da1eb016906ac10cd81b.tar.bz2
elm-sharp-1aec05315400d6047ab5da1eb016906ac10cd81b.zip
Merge "modify api comments of box(GetPartColor,SetPartColor)" into tizen
-rwxr-xr-xElmSharp/ElmSharp/Box.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/ElmSharp/ElmSharp/Box.cs b/ElmSharp/ElmSharp/Box.cs
index 721c04c..d66a80c 100755
--- a/ElmSharp/ElmSharp/Box.cs
+++ b/ElmSharp/ElmSharp/Box.cs
@@ -130,9 +130,9 @@ namespace ElmSharp
}
/// <summary>
- /// Sets the color of color class to Box's layout parent.
+ /// Sets the color of exact part to Box's layout parent.
/// </summary>
- /// <param name="part">The name of color class. </param>
+ /// <param name="part">The name of part class, it could be 'bg', 'elm.swllow.content'.</param>
/// <param name="color">The color value.</param>
public override void SetPartColor(string part, Color color)
{
@@ -143,9 +143,9 @@ namespace ElmSharp
}
/// <summary>
- /// Get the color of color class of Box's layout parent.
+ /// Gets the color of exact part of Box's layout parent.
/// </summary>
- /// <param name="part">The name of color class.</param>
+ /// <param name="part">The name of part class, it could be 'bg', 'elm.swllow.content'.</param>
/// <returns></returns>
public override Color GetPartColor(string part)
{