ITrkRegionAgent.SessionID (write-only property)

property SessionID
Syntax: object.SessionID = String
Description:
The SessionID property determines the level of access a user has. The query method is protected.

Example:
Dim oRegionAgent As Object
Dim oRegions As Object
Dim oRegion As Object
Dim oTrkSession As Object

Set oTrkSession = CreateObject("Tracker.TrkSession")
oTrkSession.AddProject "ProjectName", "ADMINISTRATOR", ""
Set oRegionAgent = CreateObject("Tracker.TrkRegionAgent")
oRegionAgent.SessionId = oTrkSession.SessionId
Set oRegion = oRegionAgent.Region("REG1")
...