com.aspose.words
Class WatermarkLayout

java.lang.Object
    extended by com.aspose.words.WatermarkLayout

public class WatermarkLayout 
extends java.lang.Object

Utility class containing constants. Defines layout of the watermark relative to the watermark center.

Example:

Shows how to create a text watermark.
Document doc = new Document();

// Add a plain text watermark.
doc.getWatermark().setText("Aspose Watermark");

// If we wish to edit the text formatting using it as a watermark,
// we can do so by passing a TextWatermarkOptions object when creating the watermark.
TextWatermarkOptions textWatermarkOptions = new TextWatermarkOptions();
textWatermarkOptions.setFontFamily("Arial");
textWatermarkOptions.setFontSize(36f);
textWatermarkOptions.setColor(Color.BLACK);
textWatermarkOptions.setLayout(WatermarkLayout.DIAGONAL);
textWatermarkOptions.isSemitrasparent(false);

doc.getWatermark().setText("Aspose Watermark", textWatermarkOptions);

doc.save(getArtifactsDir() + "Document.TextWatermark.docx");

// We can remove a watermark from a document like this.
if (doc.getWatermark().getType() == WatermarkType.TEXT)
    doc.getWatermark().remove();

Field Summary
static final intHORIZONTAL = 0
           Horizontal watermark layout. Corresponds to 0 degrees of rotation.
static final intDIAGONAL = 315
           Diagonal watermark layout. Corresponds to 315 degrees of rotation.
 

Field Detail

HORIZONTAL = 0

public static final int HORIZONTAL
Horizontal watermark layout. Corresponds to 0 degrees of rotation.

DIAGONAL = 315

public static final int DIAGONAL
Diagonal watermark layout. Corresponds to 315 degrees of rotation.

See Also:
          Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
          Aspose.Words Support Forum - our preferred method of support.