|
|
|
|
|
DocChangeZOrder (Function) In french: DocChangeAltitude Intuitively modifies the Z-order of an Image element or a text area in a docx document. f is docFragment <- TT_Document.Selection.Fragment e is docElement <- f.Element[1] IF e..Image <> Null THEN DocChangeZOrder(e, docZOrderFront) END
Syntax
DocChangeZOrder(<Element> , <Modification>)
<Element>: docElement variable Name of the docElement variable to be used. This must be an "Image" or "Text area" element. Otherwise, a fatal error is displayed. <Modification>: Integer constant New Z-order: | | docZOrderBackground | Sends the element to the background. | docZOrderBackward | Moves the element to the lower level. | docZOrderForward | Moves the element to the upper level. | docZOrderFront | Brings the element to the foreground. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|