コード例 #1
0
        /// <summary>
        /// Called when Spotfire has started
        /// </summary>
        /// <param name="context"></param>

        public override void Started(StartContextWrapper context)
        {
            base.Started(context);

            //UpdateStatusMessage("Spotfire has started");

            WaitingForStartupCompletedEvent.Set();             // indicate Spotfire has started
            return;
        }
コード例 #2
0
            public override void Started(StartContextWrapper context)
            {
                base.Started(context);

                // The call to this method is made on a thread that is allocated by  the COM
                // interop framework. To set a text in the Form we must switch to the Form thread.
                // By doing this with an asynchronous BeginInvoke, this method returns immediately
                // an thus does the COM call from TIBCO Spotfire which allows TIBCO Spotfire to continue execution.
                this.TestForm.BeginInvoke(
                    new MethodInvoker(delegate { this.TestForm.StatusTextBox.Text += "TIBCO Spotfire started."; }));
            }
コード例 #3
0
 public virtual void Started(StartContextWrapper context)
 {
 }