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




Glossary Item Box

Represents ART Ellipse mark.

Object Model

ImGearARTEllipse ClassImGearARTBorder ClassImGearRectangle StructureIImGearRGBQuad InterfaceImGearRectangle Structure

Syntax

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

Example

C#Copy Code
// Setup rectangle for the ellipse mark's location.
ImGearRectangle igRectangle = new ImGearRectangle(10, 10, 300, 100);
// Setup color for the ellipse.
ImGearRGBQuad igRGBQuadEllipse = new ImGearRGBQuad(40, 40, 200);
// Setup color for the ellipse border.
ImGearRGBQuad igRGBQuadEllipseBorder = new ImGearRGBQuad(60, 60, 255);
// Create ellipse with a solid 4 pixel border and opacity of 127 (50%)
ImGearARTEllipse igARTEllipse = new ImGearARTEllipse(
    igRectangle, igRGBQuadEllipse, igRGBQuadEllipseBorder, ImGearARTPenStyle.SOLID, 4, 127
);
// Add the annotation to the ARTPage.
igARTPage.AddMark(igARTEllipse, ImGearARTCoordinatesType.IMAGE_COORD);
Visual BasicCopy Code
' Setup rectangle for the ellipse mark's location.
Dim igRectangle As New ImGearRectangle(10, 10, 300, 100)
' Setup color for the ellipse.
Dim igRGBQuadEllipse As New ImGearRGBQuad(40, 40, 200)
' Setup color for the ellipse border.
Dim igRGBQuadEllipseBorder As New ImGearRGBQuad(60, 60, 255)
' Create ellipse with a solid 4 pixel border and opacity of 127 (50%)
Dim igARTEllipse As New ImGearARTEllipse( _
 igRectangle, igRGBQuadEllipse, igRGBQuadEllipseBorder, ImGearARTPenStyle.SOLID, 4, 127)
' Add the annotation to the ARTPage.
igARTPage.AddMark(igARTEllipse, ImGearARTCoordinatesType.IMAGE_COORD)

Inheritance Hierarchy

System.Object
   ImageGear.ART.ImGearARTSelection
      ImageGear.ART.ImGearARTMark
         ImageGear.ART.ImGearARTEllipse

See Also

©2013. Accusoft Corporation. All Rights Reserved.