SIL.FieldWorks.XWorks.FwXWindow.OnNewWindow C# (CSharp) Method

OnNewWindow() public method

public OnNewWindow ( object command ) : bool
command object
return bool
		public bool OnNewWindow(object command)
		{
			CheckDisposed();

			// Ensure that the new window opens in the same tool and location as this window.
			// See LT-1648.
			SaveSettings();
			m_app.FwManager.OpenNewWindowForApp(m_app, this);
			return true;
		}
FwXWindow