SetValue Method
- Last UpdatedNov 06, 2025
- 1 minute read
The SetValue() method sets the value of an attribute, replacing the previous value.
'Declaration
Public Shared Sub SetValue( _
ByVal sessionId As Integer, _
ByVal attributeId As Integer, _
ByVal attributeValue As String _
)
'Usage
Dim sessionId As Integer
Dim attributeId As Integer
Dim attributeValue As String
SystemAttribute.SetValue(sessionId, attributeId, attributeValue)
public static void SetValue(
int sessionId,
int attributeId,
string attributeValue
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- attributeId
- Required. Holds the ID of the system attribute whose value is being set.
- attributeValue
- Required. Holds the new value of the system attribute.