WatermarkPosition

public enum WatermarkPosition: String

Indicates the position of watermark in content area.

  • Place watermark at the center.

    Declaration

    Swift

    case Center = "center"
  • Top

    Place watermark at the top edge, centered horizontally.

    Declaration

    Swift

    case Top = "top"
  • Place watermark at the top right corner.

    Declaration

    Swift

    case TopRight = "topRight"
  • Place watermark at the right edge, centered vertically.

    Declaration

    Swift

    case Right = "right"
  • Place watermark at the bottom right corner.

    Declaration

    Swift

    case BottomRight = "bottomRight"
  • Place watermark at the bottom edge, centered horizontally.

    Declaration

    Swift

    case Bottom = "bottom"
  • Place watermark at the bottom left corner.

    Declaration

    Swift

    case BottomLeft = "bottomLeft"
  • Place watermark at the left edge, centered vertically.

    Declaration

    Swift

    case Left = "left"
  • Place watermark at the top left corner.

    Declaration

    Swift

    case TopLeft = "topLeft"