Delete Method (ProcessAttr)
- Last UpdatedNov 06, 2025
- 1 minute read
The Delete() method deletes the specified process attribute record from the Process_Attr table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal processId As String, _
ByVal attrId As Integer, _
ByVal modId As String _
)
'Usage
Dim sessionId As Integer
Dim processId As String
Dim attrId As Integer
Dim modId As String
ProcessAttr.Delete(sessionId, processId, attrId, modId)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- processId
- Required. Holds the ID of the process whose attribute is being deleted.
- attrId
- Required. Holds the ID of the attribute that is being deleted.
- modId
- Required. Holds a modification ID value to avoid data contention. The passed value must match the record's modification ID value for the record to be deleted.