Microsoft.R.Components.InteractiveWorkflow.Implementation.InteractiveWindowConsole.Write C# (CSharp) Method

Write() public method

public Write ( string text ) : void
text string
return void
        public void Write(string text) {
            if (_workflow.ActiveWindow != null) {
                _workflow.Shell.DispatchOnUIThread(() => _workflow.ActiveWindow?.InteractiveWindow?.WriteError(text));
            }
        }