summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-01-15 17:28:44 -0800
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2017-01-15 17:28:44 -0800
commitfa049a952a7535e60c6842ee2b4f36e7d459a722 (patch)
treea73c882c047dc797511ec36bdabecfde4a144d38
parent264a02ca703f6517d5295f93e14d9c324ee9add4 (diff)
parent912d279b23d7e16312cb331ac4b662bae965ed64 (diff)
downloadelm-sharp-fa049a952a7535e60c6842ee2b4f36e7d459a722.tar.gz
elm-sharp-fa049a952a7535e60c6842ee2b4f36e7d459a722.tar.bz2
elm-sharp-fa049a952a7535e60c6842ee2b4f36e7d459a722.zip
Merge "Add Clear method in GenGrid" into tizen
-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);