Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Added ReloadData method
Browse files Browse the repository at this point in the history
svn path=/trunk/cocoa-sharp/; revision=88771
  • Loading branch information
Todd Schavey committed Nov 3, 2007
1 parent cc6eb15 commit 0f2d21e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Cocoa/OutlineView.cs
Expand Up @@ -26,5 +26,11 @@ public class OutlineView : Control {
public void ExpandItem (Cocoa.Object item) {
ObjCMessaging.objc_msgSend (NativeObject, "expandItem:", typeof (void), typeof (IntPtr), item.NativeObject);
}

public void ReloadData()
{
ObjCMessaging.objc_msgSend(NativeObject, "reloadData", typeof(void));
}

}
}

0 comments on commit 0f2d21e

Please sign in to comment.