summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-05-26 01:28:47 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2017-05-26 01:28:47 +0000
commitc30bfcb0dafc623df84e183d002497b423f8e1ee (patch)
treeeb7701052b0d7c0a7b5583bb827a0af66175e4d2
parent15b8e5a3cc8310151cdbd893bf1004274e486e19 (diff)
parent886aea8fd3a28c07be9e2f3e30e1704b729faa22 (diff)
downloadelm-sharp-c30bfcb0dafc623df84e183d002497b423f8e1ee.tar.gz
elm-sharp-c30bfcb0dafc623df84e183d002497b423f8e1ee.tar.bz2
elm-sharp-c30bfcb0dafc623df84e183d002497b423f8e1ee.zip
Merge "Add DeletePartColor method for ItemObject" into tizen
-rwxr-xr-xElmSharp/ElmSharp/ItemObject.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/ElmSharp/ElmSharp/ItemObject.cs b/ElmSharp/ElmSharp/ItemObject.cs
index c005ab0..7e402a7 100755
--- a/ElmSharp/ElmSharp/ItemObject.cs
+++ b/ElmSharp/ElmSharp/ItemObject.cs
@@ -175,6 +175,15 @@ namespace ElmSharp
}
/// <summary>
+ /// Deletes color of an object item
+ /// </summary>
+ /// <param name="part">The text part name</param>
+ public void DeletePartColor(string part)
+ {
+ Interop.Elementary.elm_object_item_color_class_del(Handle, part);
+ }
+
+ /// <summary>
/// Gets the handle of object item
/// </summary>
/// <param name="obj">ItemObject</param>