Description

Sets the named value in the collection in the given namespace.

Syntax

Sub SetNamedValue(Namespace As String, ValueName As String, Value As Object)

Parameters

Name

Data Type

Description

Namespace

String

Unique identifier for the value collection

ValueName

String

Name of the value to set 

Value

String

Value to set

Return

No return value.

Example

'create Pentagon DOCS Script Library object

Set scriptLib = GetExtensionObject("PentagonDOCS.Core.ScriptLibrary")


'set named value

scriptLib.SetNamedValue "Namespace", "ValueName", "Value"