ImageGear .NET - Updated
ImGearARTFilledEllipse Class
Members  Example 




ImageGear24.Art Assembly > ImageGear.ART Namespace : ImGearARTFilledEllipse Class
Represents legacy ART Filled Ellipse mark.
Object Model
ImGearARTFilledEllipse ClassImGearRectangle StructureIImGearRGBQuad InterfaceImGearRectangle Structure
Syntax
'Declaration
 
Public Class ImGearARTFilledEllipse 
   Inherits ImGearARTMark
'Usage
 
Dim instance As ImGearARTFilledEllipse
public class ImGearARTFilledEllipse : ImGearARTMark 
public __gc class ImGearARTFilledEllipse : public ImGearARTMark 
public ref class ImGearARTFilledEllipse : public ImGearARTMark 
Example
// 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);
// Create ellipse with highlight on.
ImGearARTFilledEllipse igARTFilledEllipse = new ImGearARTFilledEllipse(
    igRectangle, igRGBQuadEllipse, true
);
// Add the annotation to the ARTPage.
igARTPage.AddMark(igARTFilledEllipse, ImGearARTCoordinatesType.IMAGE_COORD);
' 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)
' Create ellipse with highlight on.
Dim igARTFilledEllipse As New ImGearARTFilledEllipse( _
 igRectangle, igRGBQuadEllipse, True)
' Add the annotation to the ARTPage.
igARTPage.AddMark(igARTFilledEllipse, ImGearARTCoordinatesType.IMAGE_COORD)
Inheritance Hierarchy

System.Object
   ImageGear.ART.ImGearARTSelection
      ImageGear.ART.ImGearARTMark
         ImageGear.ART.ImGearARTFilledEllipse

See Also

Reference

ImGearARTFilledEllipse Members
ImageGear.ART Namespace