Delete Method (DataLogValue)
- Last UpdatedNov 06, 2025
- 1 minute read
The Delete() method removes the specified data log value record from the Data_Log_Value table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal grpId As Integer, _
ByVal valueIndex As Integer, _
ByVal modId As String _
)
'Usage
Dim sessionId As Integer
Dim grpId As Integer
Dim valueIndex As Integer
Dim modId As String
DataLogValue.Delete(sessionId, grpId, valueIndex, modId)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- grpId
- Required. Holds the ID of the data log group of the record to be deleted.
- valueIndex
- Required. Holds the value index of the record to be deleted.
- modId
Required. Holds the modification ID for the record to be deleted, for optimistic concurrency control. The passed value must match the modification ID in the record for the delete to succeed.