IVsResourceManager.LoadResourceBitmap2 Method

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

Syntax

‘선언
Function LoadResourceBitmap2 ( _
    pszAssemblyPath As String, _
    culture As Integer, _
    szResourceName As String, _
    <OutAttribute> ByRef hbmpValue As IntPtr _
) As Integer
‘사용 방법
Dim instance As IVsResourceManager
Dim pszAssemblyPath As String
Dim culture As Integer
Dim szResourceName As String
Dim hbmpValue As IntPtr
Dim returnValue As Integer

returnValue = instance.LoadResourceBitmap2(pszAssemblyPath, _
    culture, szResourceName, hbmpValue)
int LoadResourceBitmap2(
    string pszAssemblyPath,
    int culture,
    string szResourceName,
    out IntPtr hbmpValue
)
int LoadResourceBitmap2(
    [InAttribute] String^ pszAssemblyPath, 
    [InAttribute] int culture, 
    [InAttribute] String^ szResourceName, 
    [OutAttribute] IntPtr% hbmpValue
)
abstract LoadResourceBitmap2 : 
        pszAssemblyPath:string * 
        culture:int * 
        szResourceName:string * 
        hbmpValue:IntPtr byref -> int 
function LoadResourceBitmap2(
    pszAssemblyPath : String, 
    culture : int, 
    szResourceName : String, 
    hbmpValue : IntPtr
) : int

Parameters

  • pszAssemblyPath
    Type: System.String
    Path to the assembly where the resource is to be loaded.
  • culture
    Type: System.Int32
    A LCID value specifying the culture for which the resource is valid. Supplying a value of 0 will select the LCID that the user selected when the application was started.

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:

[local] HRESULT LoadResourceBitmap2(
   [in, string] LPCOLESTR pszAssemblyPath,
   [in] int culture,
   [in, string] LPCOLESTR szResourceName,
   [out, retval] HBITMAP *hbmpValue
);

.NET Framework Security

See Also

Reference

IVsResourceManager Interface

IVsResourceManager Members

Microsoft.VisualStudio.Shell.Interop Namespace