Spread Windows Forms 17
FarPoint.Win Assembly / FarPoint.Win.DPISupporting Namespace / DPIUtils Class / GetBitmap Method / GetBitmap(Assembly,String,Single) Method
The assembly that contain the specified resource. If the assembly is null, that mean the specified resource is file.
The original path (1x version) of specifed Bitmap resource.
The scale factor of the result Bitmap.


In This Topic
    GetBitmap(Assembly,String,Single) Method
    In This Topic
    Get the specified scale Bitmap of specified Bitmap resource. The result Bitmap is scaled from the existing versions of the Bitmap resource of all DPI supporting scale versions (see GetDPISupportingScaleFactor).
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function GetBitmap( _
       ByVal assembly As Assembly, _
       ByVal resourcePath As String, _
       ByVal requestScaleFactor As Single _
    ) As Bitmap
    'Usage
     
    
    Dim assembly As Assembly
    Dim resourcePath As String
    Dim requestScaleFactor As Single
    Dim value As Bitmap
     
    value = DPIUtils.GetBitmap(assembly, resourcePath, requestScaleFactor)

    Parameters

    assembly
    The assembly that contain the specified resource. If the assembly is null, that mean the specified resource is file.
    resourcePath
    The original path (1x version) of specifed Bitmap resource.
    requestScaleFactor
    The scale factor of the result Bitmap.

    Return Value

    The scaled Bitmap.
    See Also