Sets the scaling condition to the current picture form.
Name | Type | Description |
sScaleFlag | ScaleFlag | Picture scaling condition: "always", "never", "tooBig" or "tooSmall". |
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oPictureForm = Api.CreatePictureForm({"key": "Personal information", "tip": "Upload your photo", "required": true, "placeholder": "Photo", "lockAspectRatio": true, "respectBorders": false, "shiftX": 50, "shiftY": 50}); var oParagraph = oDocument.GetElement(0); oParagraph.AddElement(oPictureForm); oPictureForm.SetImage("https://api.onlyoffice.com/content/img/docbuilder/examples/user-profile.png", 60 * 36000, 35 * 36000); oPictureForm.SetScaleFlag("tooBig"); var sScaleFlag = oPictureForm.GetScaleFlag(); oParagraph = Api.CreateParagraph(); oParagraph.AddText("Picture scale flag: " + sScaleFlag); oDocument.Push(oParagraph); builder.SaveFile("docx", "SetScaleFlag.docx"); builder.CloseFile();