Description
Represents the XMP Basic Schema.
For a list of all members defined in this module, see BasicSchema members.
Object Model
Interfaces
| Implemented Interface | Description |
| Object | |
Example
[ASP - VBScript]
<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> <% 'Create document Dim MyDocument Set MyDocument = Server.CreateObject( "DynamicPDF.Document" ) ' Add blank pages to the document MyDocument.AddPage() MyDocument.AddPage() ' Create an Xmp Metadata Dim MyXmp Set MyXmp = MyDocument.SetXmpMetaData() ' Add Basic Schema to the XMP meta data Dim Mybs Set Mybs = MyXmp.BasicSchema Mybs.Advisory.Add ("Date") Mybs.Advisory.Add ("Contributors") Mybs.CreationDate = Now() Mybs.Nickname = "xyz" ' Save the PDF document MyDocument.DrawToWeb() %> |
See Also
BasicSchema Members
© Copyright 2007, ceTe Software