DeleteAll Method (QmSpecCharLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method deletes one or more specification characteristic link records from the Qm_Spec_Char_Link table, as specified by the filter parameters. Passing no filter parameters will delete all specification characteristic link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal qmSpecId As Nullable(Of Integer), _
ByVal charId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim qmSpecId As Nullable(Of Integer)
Dim charId As Nullable(Of Integer)
QmSpecCharLink.DeleteAll(sessionId, qmSpecId, charId)
public static void DeleteAll(
int sessionId,
Nullable<int> qmSpecId,
Nullable<int> charId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- qmSpecId
- Optional filter parameter. Holds the ID of the specification for the link being deleted.
- charId
- Optional filter parameter. Holds the ID of the characteristic for the link being deleted.