mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
27 lines
774 B
Plaintext
27 lines
774 B
Plaintext
---
|
|
title: Field Coordinates
|
|
description: Learn how to get the coordinates of a field in a document.
|
|
---
|
|
|
|
## Field Coordinates
|
|
|
|
Field coordinates represent the position of a field in a document. They are returned in the `pageX`, `pageY`, `width` and `height` properties of the field.
|
|
|
|
To enable field coordinates, you can use the `devmode` query parameter.
|
|
|
|
```bash
|
|
# Legacy editor
|
|
|
|
https://app.documenso.com/t/<team-url>/documents/<envelope-id>/legacy_editor?devmode=true
|
|
```
|
|
|
|

|
|
|
|
```bash
|
|
# New editor
|
|
|
|
https://app.documenso.com/t/<team-url>/documents/<envelope-id>/edit?step=addFields&devmode=true
|
|
```
|
|
|
|

|