FndRTLGraphics DrawImage Method (Image, Rectangle, Int32, Int32, Int32, Int32, GraphicsUnit, ImageAttributes).net Access Provider Documentation
Draws the specified portion of the specified System.Drawing.Image at the specified location and with the specified size.

Namespace: Ifs.Fnd.Core
Assembly: Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.0.0.0 (4.80.18.0)
Syntax

public void DrawImage(
	Image image,
	Rectangle destRect,
	int srcX,
	int srcY,
	int srcWidth,
	int srcHeight,
	GraphicsUnit srcUnit,
	ImageAttributes imageAttr
)

Parameters

image
Type: OnlineSystem.Drawing Image
System.Drawing.Image to draw.
destRect
Type: OnlineSystem.Drawing Rectangle
System.Drawing.Rectangle structure that specifies the location and size of the drawn image. The image is scaled to fit the rectangle.
srcX
Type: OnlineSystem Int32
The x-coordinate of the upper-left corner of the portion of the source image to draw.
srcY
Type: OnlineSystem Int32
The y-coordinate of the upper-left corner of the portion of the source image to draw.
srcWidth
Type: OnlineSystem Int32
Width of the portion of the source image to draw.
srcHeight
Type: OnlineSystem Int32
Height of the portion of the source image to draw.
srcUnit
Type: OnlineSystem.Drawing GraphicsUnit
Member of the System.Drawing.GraphicsUnit enumeration that specifies the units of measure used to determine the source rectangle.
imageAttr
Type: OnlineSystem.Drawing.Imaging ImageAttributes
System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma information for the image object.
See Also