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. ====== Parameters ====== Property of [[:scripting:api:dialog:start|IDialog]] ===== Description ===== Returns parameters storage ===== Property type ===== Read-Write Property of type **[[scripting:api:data-type:VARIANT|VARIANT]]** ===== Syntax ===== ==== JavaScript ==== <code javascript> var Storage = Dialog.Parameters; Dialog.Parameters = Storage; </code>==== Visual Basic Script ==== <code vb> Storage = Dialog.Parameters Dialog.Parameters = Storage </code>==== C++ ==== <code cpp> VARIANT Storage; HRESULT hr = Dialog.get_Parameters(&Storage); hr = Dialog.put_Parameters(Storage); </code>===== See Also ===== [[:scripting:api:dialog:start|IDialog]] ~~NOTOC~~