Void addDocumentStylesheet(HTMLDocument doc, [MediaType] media, String uri)
Arguments
doc: The HTML documentmedia: A list of media types that this stylesheet applies touri: The location of the stylesheet.
Usage
Adds a linked external stylesheet to the document. See the MediaType documentation for an explanation of the various media types. Currently only CSS stylesheets are supported by this function.
addDocumentStylesheet(doc,[MTall],
"/styles/base.css");
addDocumentStylesheet(doc,[MTprint],
"/styles/print.css");
addDocumentStylesheet(doc,[MTscreen,MTprojection,MThandheld],
"/styles/visual.css");
If the media array is empty, [MTall] will be used.