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