ToFixed

function ToFixed(nWidth: twips = null, nHeight: twips = null): boolean

Description

Converts the current form to a fixed size form.

Parameters

nWidthtwipsdefault: null

The wrapper shape width measured in twentieths of a point (1/1440 of an inch).

nHeighttwipsdefault: null

The wrapper shape height measured in twentieths of a point (1/1440 of an inch).

Returns

boolean

Try It

var oDocument = Api.GetDocument();
var oTextForm = Api.CreateTextForm({"key": "Personal information", "tip": "Enter your first name", "required": true, "placeholder": "First name", "comb": true, "maxCharacters": 10, "cellWidth": 3, "multiLine": false, "autoFit": false});
var oParagraph = oDocument.GetElement(0);
oParagraph.AddElement(oTextForm);
oTextForm.ToFixed(10 * 240, 2 * 240);
var bFixed = oTextForm.IsFixed();
oParagraph = Api.CreateParagraph();
oParagraph.AddText("The first form from this document has a fixed size: " + bFixed);
oDocument.Push(oParagraph);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).