Help > Web Development > Object Reference > Object Reference > ISYSResultList > Metadata Property
<a name="kanchor505"></a>ISYSResultList:Metadata Property
Returns the parametric refinement options for this result list.

Syntax
[VBScript]
ReadOnly property ISYSResultList.Metadata as ISYSMetadataRefinement
[C#]
IISYSMetadataRefinement  ISYSResultList.Metadata {get;}
[ColdFusion/Java]
IISYSMetadataRefinement  ISYSResultList.Metadata() throws ComException;
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

Remarks
The metadata refinement collection is a list of metadata fields and contains a sub list of values. For example, you may have a field call "Department" that has the values of "HR", "Administration", "Marketing" and "Support".

See Also