fieldData property

FieldStart.fieldData property

Gets custom field data which is associated with the field.

get fieldData(): number[]

Examples

Shows how to get data associated with the field.

let doc = new aw.Document(base.myDir + "Field sample - Field with data.docx");

let field = doc.range.fields.at(2);
console.log(new Buffer.from(field.start.fieldData).toString('utf-8'));

See Also