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




In This Topic
    ImGearARTEncryption Class
    In This Topic
    Represents ART Encryption mark.
    Object Model
    ImGearARTEncryption ClassImGearRectangle StructureImGearRectangle Structure
    Syntax
    'Declaration
     
    Public Class ImGearARTEncryption 
       Inherits ImGearARTMark
    'Usage
     
    Dim instance As ImGearARTEncryption
    public class ImGearARTEncryption : ImGearARTMark 
    public __gc class ImGearARTEncryption : public ImGearARTMark 
    public ref class ImGearARTEncryption : public ImGearARTMark 
    Example
    // Setup rectangle for the encryption mark's location.
    ImGearRectangle igRectangle = new ImGearRectangle(10, 10, 300, 300);
    // Create the encryption mark.
    ImGearARTEncryption igARTEncryption = new ImGearARTEncryption(
        igRectangle, "abcdefg"
    );
    // Add the annotation to the ARTPage.
    igARTPage.AddMark(igARTEncryption, ImGearARTCoordinatesType.IMAGE_COORD);
    ' Setup rectangle for the encryption mark's location.
    Dim igRectangle As New ImGearRectangle(10, 10, 300, 300)
    ' Create the encryption mark.
    Dim igARTEncryption As New ImGearARTEncryption( _
     igRectangle, "abcdefg")
    ' Add the annotation to the ARTPage.
    igARTPage.AddMark(igARTEncryption, ImGearARTCoordinatesType.IMAGE_COORD)
    Inheritance Hierarchy

    System.Object
       ImageGear.ART.ImGearARTSelection
          ImageGear.ART.ImGearARTMark
             ImageGear.ART.ImGearARTEncryption

    See Also