IVsCommandWindow.PrintNoShow(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
);