IVsCommandWindow.PrintNoShow(String) Method

Definition

Does the same thing as Print(String) but does not show or activate the command window.

public:
 int PrintNoShow(System::String ^ szTextToPrint);
public:
 int PrintNoShow(Platform::String ^ szTextToPrint);
int PrintNoShow(std::wstring const & szTextToPrint);
public int PrintNoShow (string szTextToPrint);
abstract member PrintNoShow : string -> int
Public Function PrintNoShow (szTextToPrint As String) As Integer

Parameters

szTextToPrint
String

[in] A String containing the text to print.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsCommandWindow::PrintNoShow(  
   [in, ref] LPCOLESTR szTextToPrint  
);  

Applies to