Delete Method (CauseGrpCategoryLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The Delete() method deletes a cause group category link record from the Cause_Grp_Category_Link table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal categoryId As Integer, _
ByVal causeGrpId As Integer _
)
'Usage
Dim sessionId As Integer
Dim categoryId As Integer
Dim causeGrpId As Integer
CauseGrpCategoryLink.Delete(sessionId, categoryId, causeGrpId)
public static void Delete(
int sessionId,
int categoryId,
int causeGrpId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- categoryId
- Required. Holds the ID of the category for the link being deleted.
- causeGrpId
- Required. Holds the ID of the cause group for the link being deleted.