Delete Method (ProcessClass)
- Last UpdatedNov 06, 2025
- 1 minute read
The Delete() method deletes the specified process class record from the Process_Class table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal processClassId As String _
)
'Usage
Dim sessionId As Integer
Dim processClassId As String
ProcessClass.Delete(sessionId, processClassId)
public static void Delete(
int sessionId,
string processClassId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- processClassId
- Required. Holds the ID of the process class that is being deleted.