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

OnDisplayEditSelectAll() public method

Enable the SelectAll command if appropriate
public OnDisplayEditSelectAll ( object commandObject, XCore.UIItemDisplayProperties &display ) : bool
commandObject object
display XCore.UIItemDisplayProperties
return bool
		public virtual bool OnDisplayEditSelectAll(object commandObject,
			ref UIItemDisplayProperties display)
		{
			CheckDisposed();

			display.Enabled = m_viewHelper.ActiveView != null;
			return true;
		}
FwXWindow