ImageGear21.Art Assembly > ImageGear.ART Namespace : ImGearARTFilledEllipse Class |
'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
// 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)
System.Object
ImageGear.ART.ImGearARTSelection
ImageGear.ART.ImGearARTMark
ImageGear.ART.ImGearARTFilledEllipse