ToFixed

ToFixed(nWidth, nHeight) → { boolean }

Inherited From: ApiFormBase#ToFixed

Converts the current form to a fixed size form.

Parameters:

Name Type Description
nWidth twips

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

nHeight twips

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

Returns:

Type
boolean

Example

Copy code
builder.CreateFile("pdf");
var oDocument = Api.GetDocument();
var oDateForm = Api.CreateDateForm({"key": "Nowadays", "tip": "Enter current date", "required": true, "placeholder": "Date", "format": "mm.dd.yyyy", "lang": "en-US"});
var oParagraph = oDocument.GetElement(0);
oParagraph.AddElement(oDateForm);
oDateForm.ToFixed(10 * 240, 2 * 240);
var bFixed = oDateForm.IsFixed();
oParagraph = Api.CreateParagraph();
oParagraph.AddText("The first form from this document has a fixed size: " + bFixed);
oDocument.Push(oParagraph);
builder.SaveFile("pdf", "ToFixed.pdf");
builder.CloseFile();

Resulting document