PrintImageAt print current image, specifing absolute position and size.

Call PrintImageAt inside a PrintBegin() and PrintEnd() block.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void PrintImageAt(
	double x,
	double y,
	double width,
	double height,
	double gammaCorrection
)
Public Sub PrintImageAt ( _
	x As Double, _
	y As Double, _
	width As Double, _
	height As Double, _
	gammaCorrection As Double _
)
public:
void PrintImageAt(
	double x, 
	double y, 
	double width, 
	double height, 
	double gammaCorrection
)

Parameters

x
Double
top-left x coordinate in inches
y
Double
top-left y coordinate in inches
width
Double
image width in inches
height
Double
image height in inches
gammaCorrection
Double
the gamma correction value, use 1 to disable gamma correction.

Examples

CopyC#
IEImage.PrintBegin();
Image1.PrintImageAt(0,0,5,5,1);
IEImage.PrintEnd();

See Also