/// ------------------------------------------------------------------------------------ /// <summary> /// Refreshes the display :) /// </summary> /// ------------------------------------------------------------------------------------ void IRootSite.RefreshDisplay() { if (m_draftView != null) { m_draftView.RefreshDisplay(); } }
/// ------------------------------------------------------------------------------------ /// <summary> /// Refreshes the display :) /// </summary> /// ------------------------------------------------------------------------------------ bool IRefreshableRoot.RefreshDisplay() { if (m_draftView != null) { m_draftView.RefreshDisplay(); } //Enhance: if all Refreshable descendant controls have been refreshed return true return(false); }