DeleteAll Method (ItemAttr)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more item attribute records from the Item_Attr table, as specified by the filter parameters. Passing no filter parameters will remove all item attribute records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal itemId As String, _
ByVal attrId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim itemId As String
Dim attrId As Nullable(Of Integer)
ItemAttr.DeleteAll(sessionId, itemId, attrId)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- itemId
- Optional filter parameter. Holds the ID of an item for which an attribute(s) is being deleted.
- attrId
- Optional filter parameter. Holds the ID of an attribute that is being deleted from its item(s).