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