Help > Web Development > Object Reference > Object Reference > ISYSDocument > Metadata Property
<a name="kanchor335"></a>ISYSDocument:Metadata Property
Returns the metadata stored for this document. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSDocument.Metadata as ISYSMetadataList
[C#]
IISYSMetadataList  ISYSDocument.Metadata {get;}
[ColdFusion/Java]
IISYSMetadataList  ISYSDocument.Metadata() throws ComException;
Examples
[VBScript]
<% ' 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>

See Also