insertBefore,insertAfter insertbefore-insertafter
Establezca XML antes o después de un nodo.
insertBefore=<xml>, insertAfter=<xml>
Si un elemento de nodo FXG tiene un s7:elementID
definido, puede agregar fragmentos XML antes o después de ese nodo con este comando.
Ejemplo section-1fc8d4135ef94b60b838391e1568e70e
Si tiene una etiqueta Group como esta:
<Group visible="true" s7:elementID="inner_shape">
A continuación:
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>
Resultados en:
<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>
Resultados en:
<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>