SvgSetUpdateCallback: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 19: Line 19:
==See Also==
==See Also==
{{SVG_functions}}
{{SVG_functions}}
[[pt-br:SvgSetUpdateCallback]]

Revision as of 23:45, 8 April 2022

Sets the update callback of an svg element

Syntax

bool svgSetUpdateCallback( svg svgElement, function / bool callback )

Required Arguments

  • svgElement: The svg you want to set the callback function of.
  • callback: The callback function to store on the SVG. If false is provided, any existing callback function will be removed from the SVG.

Returns

  • Returns true if successful, false otherwise

Example

For example of callback usage, see svgSetSize or svgSetDocumentXML.

Requirements

This template will be deleted.

See Also