insertBefore,insertAfter insertbefore-insertafter

Set XML before or after a node.

insertBefore=<xml>, insertAfter=<xml>

If an FXG node element has a s7:elementID defined, you can add XML fragments before or after that node with this command.

Example section-1fc8d4135ef94b60b838391e1568e70e

If you have a Group tag like this:

<Group visible="true" s7:elementID="inner_shape">

Then:

insertBefore.inner_shape=<Rect x="74.354" y="182.762" width="75" height="75" s7:fillOverprint="false" s7:fillOverprintMode="true" visible="true" rotation="0"><fill><SolidColor color="%23ffffff" s7:cmykColor="%2300000000"/></fill></Rect>

Results in:

<Rect height="75" rotation="0" s7:fillOverprint="false" s7:fillOverprintMode="true" visible="true" width="75" x="74.354" y="182.762"><fill><SolidColor color="#ffffff" s7:cmykColor="#00000000"/></fill></Rect><Group s7:elementID="inner_shape" visible="true">

insertAfter.inner_shape=<Rect x="74.354" y="182.762" width="75" height="75" s7:fillOverprint="false" s7:fillOverprintMode="true" visible="true" rotation="0"><fill><SolidColor color="%23ffffff" s7:cmykColor="%2300000000"/></fill></Rect>

Results in:

<Group s7:elementID="inner_shape" visible="true"> <Rect ai:knockout="0" d:userLabel="Background" height="392.581" visible="true" width="319.953" x="0.75" y="0.75"> <fill><SolidColor color="#ffffff" s7:cmykColor="#00000000"/></fill> </Rect>

recommendation-more-help
a26166cd-f2f4-45ce-996d-96a0f0d6cf49