GetAttrValue(String,String,String,String,String,String,String,String) Method
- Last UpdatedNov 06, 2025
- 1 minute read
The GetAttrsValue () method retrieves an object of the AttrValue class, which contains the attribute value, last_edit_at, mod_ID, and the attribute ID, for the specified attribute. This overload of the method uses the attribute name, attribute table name, and three filter items to specify the attribute being retrieved.
'Declaration
Public Overloads Shared Function GetAttrValue( _
ByVal attrName As String, _
ByVal tableName As String, _
ByVal filterField As String, _
ByVal filterValue As String, _
ByVal filterField1 As String, _
ByVal filterValue1 As String, _
ByVal filterField2 As String, _
ByVal filterValue2 As String _
) As Attrs.attrValue
public static Attrs.attrValue GetAttrValue(
string attrName,
string tableName,
string filterField,
string filterValue,
string filterField1,
string filterValue1,
string filterField2,
string filterValue2
)
Parameters
- attrName
- Required. Holds the name of the attribute whose AttrValue class is being retrieved.
- tableName
- Required. Holds the attribute table name to be read; for example, "item_attr" for item attributes.
- filterField
- Optional. Holds the first filter field to be used; for example, "item_id".
- filterValue
- Optional. Holds the filter value associated with the first filter field.
- filterField1
- Optional. Holds the second filter field to be used.
- filterValue1
- Optional. Holds the filter value associated with the second filter field.
- filterField2
- Optional. Holds the third filter field to be used.
- filterValue2
- Optional. Holds the filter value associated with the third filter field.
Return Value
Returns an AttrValue object for the specified attribute.