summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>