PT-BR/svgGetDocumentXML: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Client function}}
__NOTOC__
{{Recurso/item adicionado|1.5.9|1.5.8|20979|Obtém o documento XML subjacente de um elemento SVG.}}
{{PT-BR/Client_function}}
{{Added feature/item|1.5.9|1.5.8|20979|Obtém o documento XML subjacente de um elemento SVG.}}
==Sintaxe==  
==Sintaxe==  
<syntaxhighlight lang="lua">xmlnode svgGetDocumentXML ( svg svgElement )</syntaxhighlight>
<syntaxhighlight lang="lua">xmlnode svgGetDocumentXML ( svg svgElement )</syntaxhighlight>
Line 12: Line 13:
==Exemplo==
==Exemplo==
Veja o exemplo em [[svgSetDocumentXML]]
Veja o exemplo em [[svgSetDocumentXML]]
==Requisitos==
{{Requisitos|N/A|1.5.8-9.20979|}}


==Veja também==
==Veja também==
{{SVG_functions}}
{{PT-BR/SVG functions}}


[[en:svgGetDocumentXML]]
[[en:svgGetDocumentXML]]

Latest revision as of 17:30, 7 November 2024

Obtém o documento XML subjacente de um elemento SVG.

Sintaxe

xmlnode svgGetDocumentXML ( svg svgElement )

Argumentos Necessários

  • svgElement: O elemento svg que você deseja obter o documento XML.

Retornos

  • Retorna um xmlnode se for bem sucedido, false caso dê errado.

Exemplo

Veja o exemplo em svgSetDocumentXML

Veja também