Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== read ====== Method of [[:scripting:api:settings-storage:start|ISettingsStorage]] ===== Description ===== Reads object from storage ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strValueName** ==== Return Value ==== * [[scripting:api:data-type:VARIANT|VARIANT]] **pVar** ===== Syntax ===== ==== JavaScript ==== <code javascript> var pVar = SettingsStorage.read(strValueName); </code>==== Visual Basic Script ==== <code vb> pVar = SettingsStorage.read strValueName </code>==== C++ ==== <code cpp> VARIANT Var; HRESULT hr = SettingsStorage.read(strValueName, &Var); </code>===== See Also ===== [[:scripting:api:settings-storage:start|ISettingsStorage]] ~~NOTOC~~