Share via


IVsShell2.LoadPackageStringWithLCID Method

Loads a localized string resource from a VSPackage satellite DLL.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

'Declaration
Function LoadPackageStringWithLCID ( _
    ByRef guidPackage As Guid, _
    resid As UInteger, _
    lcid As UInteger, _
    <OutAttribute> ByRef pbstrOut As String _
) As Integer
int LoadPackageStringWithLCID(
    ref Guid guidPackage,
    uint resid,
    uint lcid,
    out string pbstrOut
)
int LoadPackageStringWithLCID(
    [InAttribute] Guid% guidPackage, 
    [InAttribute] unsigned int resid, 
    [InAttribute] unsigned int lcid, 
    [OutAttribute] String^% pbstrOut
)
abstract LoadPackageStringWithLCID : 
        guidPackage:Guid byref * 
        resid:uint32 * 
        lcid:uint32 * 
        pbstrOut:string byref -> int
function LoadPackageStringWithLCID(
    guidPackage : Guid, 
    resid : uint, 
    lcid : uint, 
    pbstrOut : String
) : int

Parameters

  • guidPackage
    Type: System.Guid%

    [in] GUID of the VSPackage whose satellite DLL contains the string resource.

  • resid
    Type: System.UInt32

    [in] Specifies a resource ID of the string.

  • lcid
    Type: System.UInt32

    [in] Specifies the locale ID, LCID. For example, LCID = 1033 for English.

  • pbstrOut
    Type: System.String%

    [out] Pointer to the requested string.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell80.idl:

HRESULT IVsShell2::LoadPackageStringWithLCID(
   [in] REFGUID guidPackage,
   [in] ULONG resid,
   [in] LCID lcid,
   [out, retval] BSTR *pbstrOut
);

Loads a resource string from the correct satellite DLL based on the LCID specified.

.NET Framework Security

See Also

Reference

IVsShell2 Interface

Microsoft.VisualStudio.Shell.Interop Namespace