[VBScript] ReadOnly property ISYSDocument.Metadata as ISYSMetadataList
[C#] IISYSMetadataList ISYSDocument.Metadata {get;}
[ColdFusion/Java] IISYSMetadataList ISYSDocument.Metadata() throws ComException;
<% ' Get the document Set Document = Results(CLng(Request("doc"))) Set MetaList = Document.MetaData %> <table> <% For I = 1 to MetaList.Count %> <tr> <td> <%= MetaList.Key(I) %> </td> <td> <%= MetaList(I) %> </td> </tr> <% Next %> </table>