// 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)