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

OnEditSelectAll() public method

Implement the SelectAll command (for the active view).
public OnEditSelectAll ( object arg ) : bool
arg object
return bool
		public bool OnEditSelectAll(object arg)
		{
			CheckDisposed();

			if (m_viewHelper.ActiveView != null)
			{
				try
				{
					EnableBulkLoadingDisableIdleProcessing(true);
					m_viewHelper.ActiveView.EditingHelper.SelectAll();
				}
				finally
				{
					EnableBulkLoadingDisableIdleProcessing(false);
				}
				return true;
			}
			return false;
		}
FwXWindow