Delete Method (UserGrpLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The Delete() method deletes the specified user/group link record from the User_Grp_Link table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal grpId As Integer, _
ByVal userId As String _
)
'Usage
Dim sessionId As Integer
Dim grpId As Integer
Dim userId As String
UserGrpLink.Delete(sessionId, grpId, userId)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- grpId
- Required. Holds the ID of the group whose link record is being deleted.
- userId
- Required. Holds the ID of the user whose link record is being deleted.