Skip to content
This repository was archived by the owner on Jul 5, 2020. It is now read-only.

system.registry.get()

krisdb2009 edited this page Apr 2, 2017 · 2 revisions

Details

This method will return an object or string from a specified registry location.

Arguments

mixed = system.registry.set(string keyPath);

keyPath: The key path used to specify a registry location.

Examples

//Setting a string
system.registry.set('HKEY_LOCAL_WEBDOWS/explorer/theme', 'webdows');
//Setting an object
var object = {
    this: {
         that: 'awsome',
           is: 'Cool'
    },
    that: 'nice'
}

system.registry.set('HKEY_LOCAL_DEMONSTRATION', object);


Webdows Documentation Wiki

system Object

explorer Object

Clone this wiki locally