FieldAdvance class

FieldAdvance class

Implements the ADVANCE field. To learn more, visit the Working with Fields documentation article.

Remarks

Moves the starting point at which the text that lexically follows the field is displayed to the right or left, up or down, or to a specific horizontal or vertical position.

Inheritance: FieldAdvanceField

Constructors

NameDescription
FieldAdvance()The default constructor.

Properties

NameDescription
display_resultGets the text that represents the displayed field result.
(Inherited from Field)
down_offsetGets or sets the number of points by which the text that follows the field should be moved down.
endGets the node that represents the field end.
(Inherited from Field)
formatGets a FieldFormat object that provides typed access to field’s formatting.
(Inherited from Field)
horizontal_positionGets or sets the number of points by which the text that follows the field should be moved horizontally from the left edge of the column, frame, or text box.
is_dirtyGets or sets whether the current result of the field is no longer correct (stale) due to other modifications made to the document.
(Inherited from Field)
is_lockedGets or sets whether the field is locked (should not recalculate its result).
(Inherited from Field)
left_offsetGets or sets the number of points by which the text that follows the field should be moved left.
locale_idGets or sets the LCID of the field.
(Inherited from Field)
resultGets or sets text that is between the field separator and field end.
(Inherited from Field)
right_offsetGets or sets the number of points by which the text that follows the field should be moved right.
separatorGets the node that represents the field separator. Can be None.
(Inherited from Field)
startGets the node that represents the start of the field.
(Inherited from Field)
typeGets the Microsoft Word field type.
(Inherited from Field)
up_offsetGets or sets the number of points by which the text that follows the field should be moved up.
vertical_positionGets or sets the number of points by which the text that follows the field should be moved vertically from the top edge of the page.

Methods

NameDescription
get_field_code()Returns text between field start and field separator (or field end if there is no separator). Both field code and field result of child fields are included.
(Inherited from Field)
get_field_code(include_child_field_codes)Returns text between field start and field separator (or field end if there is no separator).
(Inherited from Field)
remove()Removes the field from the document. Returns a node right after the field. If the field’s end is the last child of its parent node, returns its parent paragraph. If the field is already removed, returns None.
(Inherited from Field)
unlink()Performs the field unlink.
(Inherited from Field)
update()Performs the field update. Throws if the field is being updated already.
(Inherited from Field)
update(ignore_merge_format)Performs a field update. Throws if the field is being updated already.
(Inherited from Field)

Examples

Shows how to insert an ADVANCE field, and edit its properties.

doc = aw.Document()
builder = aw.DocumentBuilder(doc)

builder.write("This text is in its normal place.")

# Below are two ways of using the ADVANCE field to adjust the position of text that follows it.
# The effects of an ADVANCE field continue to be applied until the paragraph ends,
# or another ADVANCE field updates the offset/coordinate values.
# 1 -  Specify a directional offset:
field = builder.insert_field(aw.fields.FieldType.FIELD_ADVANCE, True).as_field_advance()
field.right_offset = "5"
field.up_offset = "5"

self.assertEqual(" ADVANCE  \\r 5 \\u 5", field.get_field_code())

builder.write("This text will be moved up and to the right.")

field = builder.insert_field(aw.fields.FieldType.FIELD_ADVANCE, True).as_field_advance()
field.down_offset = "5"
field.left_offset = "100"

self.assertEqual(" ADVANCE  \\d 5 \\l 100", field.get_field_code())

builder.writeln("This text is moved down and to the left, overlapping the previous text.")

# 2 -  Move text to a position specified by coordinates:
field = builder.insert_field(aw.fields.FieldType.FIELD_ADVANCE, True).as_field_advance()
field.horizontal_position = "-100"
field.vertical_position = "200"

self.assertEqual(" ADVANCE  \\x -100 \\y 200", field.get_field_code())

builder.write("This text is in a custom position.")

doc.save(ARTIFACTS_DIR + "Field.field_advance.docx")

See Also