====== GetUserVariables ======
Method of [[:scripting:api:project:start|IProject]]
===== Description =====
Project defined user variables. SAFEARRAY of BSTR
===== Parameters =====
* [[scripting:api:data-type:BSTR|BSTR]] **strConfiguration** = %%""%% (optional)
==== Return Value ====
* [[scripting:api:data-type:VARIANT|VARIANT]] **ppUserVariables**
===== Syntax =====
==== JavaScript ====
var ppUserVariables = Project.GetUserVariables(strConfiguration);
==== Visual Basic Script ====
ppUserVariables = Project.GetUserVariables strConfiguration
==== C++ ====
VARIANT pUserVariables;
HRESULT hr = Project.GetUserVariables(strConfiguration, &pUserVariables);
===== See Also =====
[[:scripting:api:project:start|IProject]]
~~NOTOC~~