Help > Web Development > Object Reference > Object Reference > ISYSMetadataRefinementItem
<a name="kanchor469"></a>ISYSMetadataRefinementItem Object
Contains the parametric refinement options for a particular metadata field.
ISYSMetadataRefinementItem Properties
CountReturns the number of items available for this parametric refinement field.
FieldTypeReturns the field type of the current parametric refinement option.
NameReturns the metadata field name for this parametric refinement option
ScoreReturns the score for this parametric refinement option. The score is used to determine the order of the fields returned.
ValueReturns the item at the given index (between 1 and Count).
Examples
[VBScript]
Sub ShowRefinement(Item) Print Item.Name For I = 1 to Item.Count Print Space(4) & Item.Value(I).Name Next End Sub For Each Refinement in ISYSResultList.Metadata ShowRefinement Refinement Next ' Sample Output ' Department ' HR ' Administration ' Marketing ' Support ' Author ' John Smith ' Fred Jones ' Company ' AMCE Inc ' Random Aerospace
See Also
ISYSMetadataRefinement Object
ISYSMetadataRefinementItemValue Object