ITrkAttribute.SessionID (write-only property)

property SessionID
Syntax: object.SessionID = String
Description:
The SessionID property specifies the level of access a given user has. The delete and
modify methods are protected.


Example:
Dim oTrkAttribAgent As Object
Dim oTrkAttributes As Object
Dim oTrkAttribute As Object
Set oTrkAttribAgent = CreateObject("Tracker.TrkAttributeAgent")
oTrkAttribAgent.Execute oTrkAttributes
Set oTrkAttribute = oTrkAttributes.Item(1)
oTrkAttribute.SessionID = "SESS1"
...