'Variable exists:
If bStatus Then bStatus = CMS_GetDeploymentTemplateVariable("domain", "domainUserName", True)
'This will set bStatus = true, gbValue = true and gsValue = "ciinst"
'Root variable:
If bStatus Then bStatus = CMS_GetDeploymentTemplateVariable("", "title", True)
'This will set bStatus = true, gbValue = true and gsValue = "Default"
'Custom variable:
If bStatus Then bStatus = CMS_GetDeploymentTemplateVariable("CustomValues", "a", True)
'This will set bStatus = true, gbValue = true and gsValue = 1
'bMustExist:
If bStatus Then bStatus = CMS_GetDeploymentTemplateVariable("domain", "publishedAuthority", True)
'This will set bStatus = false, gbValue = false and gsValue = ""
|