Property Value
Type: System.StringThe value of local variable.
// get local variable ILocalVariable lv = project.Variables["VariableName"]; // get value of local variable string value = lv.Value; // set value of local variable lv.Value = "0";
// get local variable $lv = $project->Variables->get_Item("VariableName"); // get value of local variable $value = $lv->Value; // set value of local variable $lv->Value = "0";
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.