public static IDisposable HideBodyUndoable(this IBody2 body) { body.HideBody(true); return(Disposable.Create(() => { body.HideBody(false); })); }