SetBrowserProperty: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Needs Example}}
{{New feature/item|3.0150|1.5||
{{New feature/item|3.0150|1.5||
This function sets a given property of a specified browser.
This function sets a given property of a specified browser.
Line 21: Line 22:


==Example==
==Example==
{{Example}}
TODO


==See also==
==See also==
{{CEF_functions}}
{{CEF_functions}}

Revision as of 13:49, 7 May 2017

Accessories-text-editor.png Script Example Missing Function SetBrowserProperty needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

This function sets a given property of a specified browser.

Syntax

bool setBrowserProperty ( browser theBrowser, string key, string value )

OOP Syntax Help! I don't understand this!

Method: browser:setProperty(...)
Counterpart: getBrowserProperty


Required arguments

  • theBrowser: The browser element you want to set a property of
  • key: The browser property key. It can be:
    • mobile: Surfing the web as mobile
  • value: A value indicating whether to enable ("1") the property or not ("0")

Returns

Returns true if the property was successfully set, false otherwise.

Example

TODO

See also