ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTFilledRectangle Class
Members Example




In This Topic
    ImGearARTFilledRectangle Class
    In This Topic
    Represents legacy ART Filled Rectangle mark.
    Object Model
    ImGearARTFilledRectangle ClassImGearRectangle StructureIImGearRGBQuad InterfaceImGearRectangle Structure
    Syntax
    'Declaration
     
    Public Class ImGearARTFilledRectangle 
       Inherits ImGearARTMark
    'Usage
     
    Dim instance As ImGearARTFilledRectangle
    public class ImGearARTFilledRectangle : ImGearARTMark 
    public __gc class ImGearARTFilledRectangle : public ImGearARTMark 
    public ref class ImGearARTFilledRectangle : public ImGearARTMark 
    Example
    // Setup rectangle for the rectangle mark's location.
    ImGearRectangle igRectangle = new ImGearRectangle(10, 10, 300, 100);
    // Setup color for the rectangle.
    ImGearRGBQuad igRGBQuad = new ImGearRGBQuad(40, 200, 40);
    // Create rectangle with highlight on.
    ImGearARTFilledRectangle igARTFilledRectangle = new ImGearARTFilledRectangle(
        igRectangle, igRGBQuad, true
    );
    // Add the annotation to the ARTPage.
    igARTPage.AddMark(igARTFilledRectangle, ImGearARTCoordinatesType.IMAGE_COORD);
    ' Setup rectangle for the rectangle mark's location.
    Dim igRectangle As New ImGearRectangle(10, 10, 300, 100)
    ' Setup color for the rectangle.
    Dim igRGBQuad As New ImGearRGBQuad(40, 200, 40)
    ' Create rectangle with highlight on.
    Dim igARTFilledRectangle As New ImGearARTFilledRectangle( _
     igRectangle, igRGBQuad, True)
    ' Add the annotation to the ARTPage.
    igARTPage.AddMark(igARTFilledRectangle, ImGearARTCoordinatesType.IMAGE_COORD)
    Inheritance Hierarchy

    System.Object
       ImageGear.ART.ImGearARTSelection
          ImageGear.ART.ImGearARTMark
             ImageGear.ART.ImGearARTFilledRectangle

    See Also