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