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




ImageGear.Art Assembly > ImageGear.ART Namespace : ImGearARTTextStamp Class
Represents legacy ART Text Stamp mark.
Object Model
ImGearARTTextStamp ClassImGearRectangle StructureImGearRectangle StructureIImGearRGBQuad Interface
Syntax
'Declaration
 
Public Class ImGearARTTextStamp 
   Inherits ImGearARTMark
 
'Usage
 
Dim instance As ImGearARTTextStamp
Example
// Setup rectangle for the text mark's location.
ImGearRectangle igRectangle = new ImGearRectangle(10, 10, 200, 20);
// Setup color for the text.
ImGearRGBQuad igRGBQuadText = new ImGearRGBQuad(255, 0, 255);
// Create the text stamp annotation
ImGearARTTextStamp igARTTextStamp = new ImGearARTTextStamp(
    igRectangle, "ImGearARTTextStamp test", igRGBQuadText,
    "Arial", (float)14.0, ImGearARTFontStyles.Regular
);
// Add the annotation to the ARTPage.
igARTPage.AddMark(igARTTextStamp, ImGearARTCoordinatesType.IMAGE_COORD);
Inheritance Hierarchy

System.Object
   ImageGear.ART.ImGearARTSelection
      ImageGear.ART.ImGearARTMark
         ImageGear.ART.ImGearARTTextStamp

See Also

Reference

ImGearARTTextStamp Members
ImageGear.ART Namespace