|
|
|
|
<Document>.FindElementByName (Function) In french: <Document>.RechercheElémentParNom Searches for an element by its name in a variable of type Document. MyDocument is Document // Delete the image named "Logo image" from the document ElementFound is docElement <- MyDocument.FindElementByName("Logo image") IF ElementFound <> Null THEN DocDelete(ElementFound) END
Syntax
<Result> = <Document>.DocFindElementByName(<Element name>)
<Result>: docElement variable - docElement variable corresponding to the searched element,
- Null if no element was found.
<Document>: Document variable Name of the Document variable to be used. <Element name>: Character string Text to find in the document Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|