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

OnStartLogging() protected method

Start logging events.
protected OnStartLogging ( object args ) : bool
args object
return bool
		protected bool OnStartLogging(object args)
		{
			// For now, it attaches itself to various things through events, and runs until
			// the program exits.
			using (ScriptMaker sm = new ScriptMaker(ActiveForm))
			{
				LinkListener ll = (LinkListener)m_mediator.PropertyTable.GetValue("LinkListener",
					null);
				if (ll == null)
					return true;
				sm.GoTo(ll.CurrentContext.ToString());
				return true;
			}
		}
FwXWindow