// Setup rectangle for the reference image mark's location.
ImGearRectangle igRectangle = new ImGearRectangle(10, 10, 100, 100);
// Create reference image mark using a file "PNGTEST.png".
ImGearARTImageRef igARTImageRef = new ImGearARTImageRef(
igRectangle, "PNGTEST.png"
);
// Add the annotation to the ARTPage.
igARTPage.AddMark(igARTImageRef, ImGearARTCoordinatesType.IMAGE_COORD);
' Setup rectangle for the reference image mark's location.
Dim igRectangle As New ImGearRectangle(10, 10, 100, 100)
' Create reference image mark using a file "PNGTEST.png".
Dim igARTImageRef As New ImGearARTImageRef( _
igRectangle, "PNGTEST.png")
' Add the annotation to the ARTPage.
igARTPage.AddMark(igARTImageRef, ImGearARTCoordinatesType.IMAGE_COORD)