/////////////////////////////////////////////////////////////////////// private bool SafeAppendText( string text, bool newLine ) { return(CommonOps.AppendText(txtLog, text, newLine, true)); }
/////////////////////////////////////////////////////////////////////// #region Public Methods public void SafeClose() { CheckDisposed(); CommonOps.Invoke(this, new DelegateWithNoArgs(delegate() { Close(); }), true); }
/////////////////////////////////////////////////////////////////////// public bool SafeClearLog() { CheckDisposed(); return(CommonOps.SetText(txtLog, null, true)); }