See Also

DublinCoreSchema Members

Description

Represents the Dublin Core Schema.

For a list of all members defined in this module, see DublinCoreSchema members.

Object Model











Interfaces

Implemented InterfaceDescription
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() 
    ' Dublin Core Schema. 
    Dim Mydc 'As DublinCoreSchema 
    Set Mydc = MyXmp.DublinCore 
    Mydc.Contributors.Add ("Abc") 
    Mydc.Contributors.Add ("Xyz") 
    Mydc.Contributors.Add ("Pqrs") 
    Mydc.Coverage = "To test all the attributes of schema's provided" 
    Mydc.Creators.Add ("DynamicPDF") 
    Mydc.Creators.Add ("ceTe Software") 
    Mydc.Date.Add (Now()) 
    Mydc.Description.AddLang "en-us", "XMP Schema's test" 
    Mydc.Identifier = "First XMP pdf" 
    Mydc.Publisher.Add ("DynamicPDF.com") 
    Mydc.Publisher.Add ("ceTe Software") 
    Mydc.Relation.Add ("test pdf with xmp") 
    Mydc.Rights.DefaultText = "ceTe Software Pvt. Ltd" 
    Mydc.Rights.AddLang "en-us", "All rights reserved 2006, ceTe software." 
    Mydc.Source = "XMP Project" 
    Mydc.Subject.Add ("eXtensible Metadata Platform") 
    Mydc.Title.AddLang "en-us", "XMP" 
    Mydc.Title.AddLang "it-it", "XMP - Piattaforma Estendible di Metadata" 
    Mydc.Title.AddLang "du-du", "De hallo Wereld" 
    Mydc.Title.AddLang "fr-fr", "XMP - Une Platforme Extensible pour les Métédonnées" 
    Mydc.Title.AddLang "DE-DE", "???? Hallo Welt" 
    Mydc.Type.Add "Pdf file containing xmp metadata" 
    ' Save the PDF document 
    MyDocument.DrawToWeb() 
%>

See Also

DublinCoreSchema Members

 

 


© Copyright 2007, ceTe Software