ImageGear for .NET
ImGearARTImageRef Class
Members  Example  See Also  Send Feedback
ImageGear21.Art Assembly > ImageGear.ART Namespace : ImGearARTImageRef Class




Glossary Item Box

Represents legacy ART Image Reference mark.

Object Model

ImGearARTImageRef ClassImGearRectangle StructureImGearRectangle Structure

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Example

C#Copy Code
// 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);
Visual BasicCopy Code
' 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)

Inheritance Hierarchy

System.Object
   ImageGear.ART.ImGearARTSelection
      ImageGear.ART.ImGearARTMark
         ImageGear.ART.ImGearARTImageRef

See Also

©2013. Accusoft Corporation. All Rights Reserved.