====== 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 ==== var psValue = Bundle.GetProperty(sName); ==== Visual Basic Script ==== psValue = Bundle.GetProperty sName ==== C++ ==== BSTR sValue; HRESULT hr = Bundle.GetProperty(sName, &sValue); ===== See Also ===== [[:scripting:api:bundle:start|IBundle]] ~~NOTOC~~