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. ====== GetStorage ====== Method of [[:scripting:api:application:start|IApplication]] ===== Description ===== Returns storage object ===== Parameters ===== * [[:scripting:api:storage-type|eStorageType]] **eType** * [[scripting:api:data-type:BSTR|BSTR]] **strName** * [[:scripting:api:access-type|eAccessType]] **access** ==== Return Value ==== * [[:scripting:api:settings-storage:start|ISettingsStorage]] **ppStorage** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppStorage = Application.GetStorage(eType, strName, access); </code>==== Visual Basic Script ==== <code vb> ppStorage = Application.GetStorage eType, strName, access </code>==== C++ ==== <code cpp> CComPtr<ISettingsStorage> pStorage; HRESULT hr = Application.GetStorage(eType, strName, access, &pStorage); </code>===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~