IVsInstalledProduct.ProductDetails(String) Method

Definition

Obtains a pointer to the string containing the product details that are displayed in the About dialog box on the Help menu. Not called for the splash screen.

public:
 int ProductDetails([Runtime::InteropServices::Out] System::String ^ % pbstrProductDetails);
int ProductDetails([Runtime::InteropServices::Out] std::wstring const & & pbstrProductDetails);
public int ProductDetails (out string pbstrProductDetails);
abstract member ProductDetails : string -> int
Public Function ProductDetails (ByRef pbstrProductDetails As String) As Integer

Parameters

pbstrProductDetails
String

[out] Pointer to a string containing the product details.

Returns

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

Examples

You can place the hard-coded paths and strings used by this method in your project's resource file.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsInstalledProduct::ProductDetails(  
   [out, retval] BSTR *pbstrProductDetails  
);  

Applies to