ImageGear PDF v25.1 - Updated July 30, 2021
ImGearARTPinUpText Class
Members  Example 




ImageGear.Art Assembly > ImageGear.ART Namespace : ImGearARTPinUpText Class
Represents legacy ART Pin-Up-Text mark.
Object Model
ImGearARTPinUpText ClassImGearRectangle StructureImGearRectangle StructureIImGearRGBQuad InterfaceIImGearRGBQuad Interface
Syntax
'Declaration
 
Public Class ImGearARTPinUpText 
   Inherits ImGearARTMark
 
'Usage
 
Dim instance As ImGearARTPinUpText
Example
// Setup rectangle for the pinup mark's location.
ImGearRectangle igRectangle = new ImGearRectangle(10, 10, 300, 100);
// Setup color for the text.
ImGearRGBQuad igRGBQuadText = new ImGearRGBQuad(0, 0, 0);
// Setup color for the pin.
ImGearRGBQuad igRGBQuadPin = new ImGearRGBQuad(40, 200, 40);
// Create pinup mark using size 14 bold Arial font 
ImGearARTPinUpText igARTPinUpText = new ImGearARTPinUpText(
    igRectangle, "ImGearARTPinUpText test", igRGBQuadText, "Arial", (float)14.0, ImGearARTFontStyles.Bold, igRGBQuadPin
);
// Add the annotation to the ARTPage.
igARTPage.AddMark(igARTPinUpText, ImGearARTCoordinatesType.IMAGE_COORD);
Inheritance Hierarchy

System.Object
   ImageGear.ART.ImGearARTSelection
      ImageGear.ART.ImGearARTMark
         ImageGear.ART.ImGearARTPinUpText

See Also

Reference

ImGearARTPinUpText Members
ImageGear.ART Namespace