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. ====== Name ====== Property of [[:scripting:api:name-value:start|INameValue]] ===== Description ===== Name ===== Property type ===== Read-Write Property of type **[[scripting:api:data-type:BSTR|BSTR]]** ===== Syntax ===== ==== JavaScript ==== <code javascript> var sName = NameValue.Name; NameValue.Name = sName; </code>==== Visual Basic Script ==== <code vb> sName = NameValue.Name NameValue.Name = sName </code>==== C++ ==== <code cpp> BSTR sName; HRESULT hr = NameValue.get_Name(&sName); hr = NameValue.put_Name(sName); </code>===== See Also ===== [[:scripting:api:name-value:start|INameValue]] ~~NOTOC~~