public int CreatePane(ref Guid rguidPane, string pszPaneName, int fInitVisible, int fClearWithSolution) {
     MockOutputWindowPane pane;
     if (_panes.TryGetValue(rguidPane, out pane)) {
         _panes[rguidPane] = new MockOutputWindowPane(pszPaneName);
     }
     return VSConstants.S_OK;
 }
예제 #2
0
        public int CreatePane(ref Guid rguidPane, string pszPaneName, int fInitVisible, int fClearWithSolution)
        {
            MockOutputWindowPane pane;

            if (_panes.TryGetValue(rguidPane, out pane))
            {
                _panes[rguidPane] = new MockOutputWindowPane(pszPaneName);
            }
            return(VSConstants.S_OK);
        }