Draws the specified source rectangle inside the destination rectangle of Graphics object.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void RenderToGraphics(
	Graphics g,
	int xDst,
	int yDst,
	int dxDst,
	int dyDst,
	int xSrc,
	int ySrc,
	int dxSrc,
	int dySrc,
	int transparency,
	IEResampleFilter filter,
	RenderOperation renderOperation
)
Public Sub RenderToGraphics ( _
	g As Graphics, _
	xDst As Integer, _
	yDst As Integer, _
	dxDst As Integer, _
	dyDst As Integer, _
	xSrc As Integer, _
	ySrc As Integer, _
	dxSrc As Integer, _
	dySrc As Integer, _
	transparency As Integer, _
	filter As IEResampleFilter, _
	renderOperation As RenderOperation _
)
public:
void RenderToGraphics(
	Graphics^ g, 
	int xDst, 
	int yDst, 
	int dxDst, 
	int dyDst, 
	int xSrc, 
	int ySrc, 
	int dxSrc, 
	int dySrc, 
	int transparency, 
	IEResampleFilter filter, 
	RenderOperation renderOperation
)

Parameters

g
Graphics
Destination Graphics object.
xDst
Int32
Horizontal position of destination rectangle.
yDst
Int32
Vertical position of destination rectangle.
dxDst
Int32
Width of destination rectangle.
dyDst
Int32
Height of destination rectangle.
xSrc
Int32
Horizontal position of source rectangle.
ySrc
Int32
Vertical position of source rectangle.
dxSrc
Int32
Width of source rectangle.
dySrc
Int32
Height of source rectangle.
transparency
Int32
Transparency (0=transparent, 255=opaque).
filter
IEResampleFilter
Resampling filter.
renderOperation
RenderOperation
Blend mode.

See Also