How I align TextField Value in 'center' using Jspdf during export

240 Views Asked by At

My js Code is...

 var textField = new TextField();
                textField.Rect = [13, 47, 180, 10];
                textField.multiline = false;
                textField.V = "461 Dean Apartments";
                textField.T = "TestTextBox";
                doc.addField(textField);

below is the example of my editable Pdf field where I want to show "461 Dean Apartments" in the center or justify.

Thanks enter image description here

2

There are 2 best solutions below

4
On

You can do it using textAlign function

  textField.textAlign = "center"

Here is the documentation.

According to this source it seems you can also set it using defineProperty

   Object.defineProperty(textField, "textAlign", {
        get: function(value){
            return "center"
        },
        set: function(value){
            return "center"
        },
        configurable: true,
        enumerable: true,
    }
     
0
On

Finally, I got the actual approach

textField.Q = 1; for Center alignment and textField.Q = 2; for Right alignment