PT-BR/svgGetDocumentXML: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(5 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 14: Line 15:


==Requisitos==
==Requisitos==
{{Requisitos|N/A|1.5.8-9.20979|}}
{{Requirements|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 20:16, 1 April 2023

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

Requisitos

Minimum server version N/A
Minimum client version 1.5.8-9.20979

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="N/A" client="1.5.8-9.20979" />

Veja também