DeleteAll Method (OperItemSpec)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more operation item specification records from the Oper_Item_Spec table, as specified by the filter parameters. Passing no filter parameter will remove all operation item specification records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal rowId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim rowId As Nullable(Of Integer)
OperItemSpec.DeleteAll(sessionId, rowId)
public static void DeleteAll(
int sessionId,
Nullable<int> rowId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call
- rowId
- Optional filter parameter. Holds the ID of the row (record) to be deleted. If a null is passed for this value, all records in the Oper_Item_Spec table will be deleted.