Adds a Dublin Core metadata element.

This viper method also supports the extension viper syntax.

Syntax

Smartsite SXML CopyCode image Copy Code
this.adddublincore(enum element, string value)
this.adddublincore(enum element, string value, string scheme)
this.adddublincore(string name, string value)
this.adddublincore(string name, string value, string scheme)

Extension Viper Syntax

Smartsite SXML CopyCode image Copy Code
page.<id>.adddublincore(enum element, string value)
page.<id>.adddublincore(enum element, string value, string scheme)
page.<id>.adddublincore(string name, string value)
page.<id>.adddublincore(string name, string value, string scheme)

Parameters

Name Data Type Description
element Enum The element.
Enum values:
  • Contributor
    An entity responsible for making contributions to the resource.
  • Coverage
    The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.
  • Creator
    An entity primarily responsible for making the resource.
  • Date
    A point or period of time associated with an event in the lifecycle of the resource.
  • Description
    An account of the resource.
  • Format
    The file format, physical medium, or dimensions of the resource.
  • Identifier
    An unambiguous reference to the resource within a given context.
  • Language
    A language of the resource.
  • Publisher
    An entity responsible for making the resource available.
  • Relation
    A related resource.
  • Rights
    Information about rights held in and over the resource.
  • Source
    A related resource from which the described resource is derived.
  • Subject
    The topic of the resource.
  • Title
    A name given to the resource.
  • Type
    The nature or genre of the resource.
value String The value.
scheme String The scheme.
name String The name.

Return Value

None.

Used in

Macro Description
Metadata Provides metadata that can be included in an HTML page and forwarded to external components such as the PDF generator and Image Processor.
SXML