• Post category:ApiPictureForm
  • Запись изменена:13.05.2023

SetRespectBorders([isRespect]) → { boolean }

Соблюдает ширину границ формы при масштабировании изображения.

Параметры:

НазваниеТипПо умолчаниюОписание
isRespectлогическийtrueУказывает, будет ли соблюдаться ширина границы формы (true) или нет (false).

Возвращает:

Логический тип

Пример

builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oPictureForm = Api.CreatePictureForm({"key": "Personal information", "tip": "Upload your photo", "required": true, "placeholder": "Photo", "scaleFlag": "tooBig", "lockAspectRatio": true, "shiftX": 50, "shiftY": 50});
var oParagraph = oDocument.GetElement(0);
oParagraph.AddElement(oPictureForm);
oPictureForm.SetImage("url-user-profile.png");
oPictureForm.SetRespectBorders(true);
var bRespectBorders = oPictureForm.IsRespectBorders();
oParagraph = Api.CreateParagraph();
oParagraph.AddText("The borders of the first picture form in this document are respected when scaling the image: " + bRespectBorders);
oDocument.Push(oParagraph);
builder.SaveFile("docx", "SetRespectBorders.docx");
builder.CloseFile();