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. ====== GetProperty ====== Method of [[:scripting:api:bundle:start|IBundle]] ===== Description ===== Reads bundle property by name ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **sName** ==== Return Value ==== * [[scripting:api:data-type:BSTR|BSTR]] **psValue** ===== Syntax ===== ==== JavaScript ==== <code javascript> var psValue = Bundle.GetProperty(sName); </code>==== Visual Basic Script ==== <code vb> psValue = Bundle.GetProperty sName </code>==== C++ ==== <code cpp> BSTR sValue; HRESULT hr = Bundle.GetProperty(sName, &sValue); </code>===== See Also ===== [[:scripting:api:bundle:start|IBundle]] ~~NOTOC~~