summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSungHyun Min <shyun.min@samsung.com>2017-01-13 19:24:16 +0900
committerSungHyun Min <shyun.min@samsung.com>2017-01-13 19:25:06 +0900
commit912d279b23d7e16312cb331ac4b662bae965ed64 (patch)
treee63f42d433059c54c06172d091e50068cebcc22e
parent91cb595d5eac1e4619fa5b3f80205a46d852a07f (diff)
downloadelm-sharp-912d279b23d7e16312cb331ac4b662bae965ed64.tar.gz
elm-sharp-912d279b23d7e16312cb331ac4b662bae965ed64.tar.bz2
elm-sharp-912d279b23d7e16312cb331ac4b662bae965ed64.zip
Add Clear method in GenGrid
Change-Id: I7bcb9d41d1ee33cdb29437cfd8b67a6f9f95c413
-rw-r--r--ElmSharp/ElmSharp/GenGrid.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/ElmSharp/ElmSharp/GenGrid.cs b/ElmSharp/ElmSharp/GenGrid.cs
index 20566a4..22c73c8 100644
--- a/ElmSharp/ElmSharp/GenGrid.cs
+++ b/ElmSharp/ElmSharp/GenGrid.cs
@@ -232,6 +232,11 @@ namespace ElmSharp
Interop.Elementary.elm_gengrid_realized_items_update(Handle);
}
+ public void Clear()
+ {
+ Interop.Elementary.elm_gengrid_clear(Handle);
+ }
+
protected override IntPtr CreateHandle(EvasObject parent)
{
return Interop.Elementary.elm_gengrid_add(parent);