Spread Windows Forms 17
FarPoint.Win Assembly / FarPoint.Win.DPISupporting Namespace / MultiScalingBitmapManager Class / GetBitmap Method / GetBitmap(Single) Method
The scale factor of the result Bitmap.


In This Topic
    GetBitmap(Single) Method
    In This Topic
    Get the specified scaled Bitmap of the Bitmap resource. The result Bitmap is scaled from nearest existing higher resolution version in the specified scale versions of the Bitmap resource. If there isn't any existing higher resolution version, the result Bitmap is scaled from nearest existing lower resolution version in the specified scale versions of the Bitmap resource.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetBitmap( _
       ByVal scaleFactor As Single _
    ) As Bitmap
    'Usage
     
    
    Dim instance As MultiScalingBitmapManager
    Dim scaleFactor As Single
    Dim value As Bitmap
     
    value = instance.GetBitmap(scaleFactor)
    public Bitmap GetBitmap( 
       float scaleFactor
    )

    Parameters

    scaleFactor
    The scale factor of the result Bitmap.

    Return Value

    The scaled Bitmap.
    See Also