public final class SpreadsheetWatermarkHeaderFooterOptions extends SpreadsheetWatermarkOptions
Learn more:
The following example demonstrates how to add a text watermark into Excel worksheet header.
SpreadsheetLoadOptions loadOptions = new SpreadsheetLoadOptions(); Watermarker watermarker = new Watermarker("D:\\test.xls", loadOptions); TextWatermark watermark = new TextWatermark("Test", new Font("Arial", 14)); SpreadsheetWatermarkHeaderFooterOptions options = new SpreadsheetWatermarkHeaderFooterOptions(); options.setWorksheetIndex(0); watermarker.save("D:\\watermarked_test.xlsx"); watermarker.close();
Constructor and Description |
---|
SpreadsheetWatermarkHeaderFooterOptions()
Initializes a new instance of the
class. |
Modifier and Type | Method and Description |
---|---|
int |
getWorksheetIndex()
Gets the index of worksheet to add the watermark to.
|
void |
setWorksheetIndex(int value)
Sets the index of worksheet to add the watermark to.
|
public SpreadsheetWatermarkHeaderFooterOptions()
SpreadsheetWatermarkHeaderFooterOptions
class.public final int getWorksheetIndex()
Gets the index of worksheet to add the watermark to.
public final void setWorksheetIndex(int value)
Sets the index of worksheet to add the watermark to.
value
- The index of worksheet to add the watermark to.