GetType
function GetType(): WatermarkType
Description
Returns the type of the watermark in the document.
Returns
WatermarkType
Try It
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oWatermarkSettings = oDocument.GetWatermarkSettings();
var sClassType = oWatermarkSettings.GetType();
oParagraph = Api.CreateParagraph();
oParagraph.AddText("Watermark Type = " + sClassType);
oDocument.Push(oParagraph);