ComponentOne FinancialChart for WPF
C1.Chart Namespace / IRenderEngine Interface / DrawImage Method
the source of image.
x-coordinate of image.
y-coordinate of image.
Image width.
Image height.



In This Topic
    DrawImage Method
    In This Topic
    Draw image using special source.
    Syntax
    'Declaration
     
    
    Sub DrawImage( _
       ByVal source As Object, _
       ByVal x As Double, _
       ByVal y As Double, _
       ByVal w As Double, _
       ByVal h As Double _
    ) 
    'Usage
     
    
    Dim instance As IRenderEngine
    Dim source As Object
    Dim x As Double
    Dim y As Double
    Dim w As Double
    Dim h As Double
     
    instance.DrawImage(source, x, y, w, h)
    void DrawImage( 
       object source,
       double x,
       double y,
       double w,
       double h
    )
    void DrawImage( 
       Object^ source,
       double x,
       double y,
       double w,
       double h
    ) 

    Parameters

    source
    the source of image.
    x
    x-coordinate of image.
    y
    y-coordinate of image.
    w
    Image width.
    h
    Image height.
    See Also