PrintImageAt prints an image, specifing absolute position and size.
Call PrintImageAt inside a PrintBegin() and PrintEnd() block (static members of IEImage class).
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0
Syntax
C# | Visual Basic | Visual C++ |
public void PrintImageAt( int imageIndex, double x, double y, double width, double height, double gammaCorrection )
Public Sub PrintImageAt ( _ imageIndex As Integer, _ x As Double, _ y As Double, _ width As Double, _ height As Double, _ gammaCorrection As Double _ )
public: void PrintImageAt( int imageIndex, double x, double y, double width, double height, double gammaCorrection )
Parameters
- imageIndex
- Int32
the index of image to print
- 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(); ieMulti.ImageList.PrintImageAt(0, 0,0,5,5,1); IEImage.PrintNewPage(); ieMulti.ImageList.PrintImageAt(1, 0,0,5,5,1); IEImage.PrintEnd();