Main Content

mlreportgen.dom.OPCPart Class

Namespace: mlreportgen.dom

Document part to include in OPC package

Description

Document part to include in an OPC package.

The mlreportgen.dom.OPCPart class is a handle class.

Creation

Description

opcPartObj = OPCPart creates an empty OPC part.

opcPartObj = OPCPart(name,sourcePath) creates a part having the specified name whose source file is located at the specified path. Appending the part to a document using the Document.package method causes a copy of the source file to be inserted in the document package at the location specified by the part name.

example

Input Arguments

expand all

Name of part, specified as a character vector or string scalar.

Path of source file for part, specified as a character vector or string scalar.

Properties

expand all

Specifies the content type using a file extension, specified as a character vector or string scalar. For a list of file content types, see https://en.wikipedia.org/wiki/Open_Packaging_Conventions.

If you do not set this property and the part is one of the types listed below, the DOM interface sets the content type when you append the part to a document.

File TypeFile Extension

Cascading style sheet

.css

Icon

.cur

Windows® metafile

.emf

Encapsulated PostScript®

.eps

GIF image

.gif

HTML

.html

JPEG image

.jpe, .jpeg, .jpg

JavaScript®

.js

JavaScript object Notation

.json

PNG image

.png

PSD

.psd

Rich Text Format

.rtf

Scalable Vector Graphics

.svg

TIFF image

.tif, .tiff

TrueType font

.ttf

Plain text

.txt

Attributes:

NonCopyable
true

Path of this part relative to the root of the package, specified as a character vector or string scalar. For example, to add an image named myimage.jpg to a document images folder, specify the path as '/images/myimage.jpg'. Specify Name using only ASCII characters.

For information about OPC part names, see https://en.wikipedia.org/wiki/Open_Packaging_Conventions.

Attributes:

NonCopyable
true

For information about OPC part names, see https://en.wikipedia.org/wiki/Open_Packaging_Conventions.

Attributes:

NonCopyable
true

For information about OPC relationship IDs, see https://en.wikipedia.org/wiki/Open_Packaging_Conventions.

Attributes:

NonCopyable
true

Specifies a relationship type using a file extension, specified as a character vector or string scalar. For a list of file content types, see https://en.wikipedia.org/wiki/Open_Packaging_Conventions.

If you do not set this property and the part is one of these types, the DOM interface sets the content type when you append the part to a document.

File TypeFile Extension

Cascading style sheet

.css

Icon

.cur

Windows metafile

.emf

Encapsulated PostScript

.eps

GIF image

.gif

HTML

.html

JPEG image

.jpe, .jpeg, .jpg

JavaScript

.js

JavaScript object Notation

.json

PNG image

.png

PSD

.psd

Rich Text Format

.rtf

Scalable Vector Graphics

.svg

TIFF image

.tif, .tiff

TrueType font

.ttf

Plain text

.txt

Attributes:

NonCopyable
true

Source file path, specified as a character vector or string scalar.

Attributes:

NonCopyable
true

Data Types: char | string

Tag for the mlreportgen.dom.OPCPart object, specified as a character vector or string scalar. The DOM API generates a session-unique tag as part of the creation of this object. The generated tag has the form CLASS:ID, where CLASS is the object class and ID is the value of the Id property of the object. Specify your own tag value to help you identify where to look when an issue occurs during document generation.

Attributes:

NonCopyable
true

Data Types: char | string

Object identifier for the mlreportgen.dom.OPCPart object, specified as a character vector or string scalar. The DOM API generates a session-unique identifier when it creates the document element object. You can specify your own value for Id.

Attributes:

NonCopyable
true

Data Types: char | string

Examples

collapse all

This code inserts a copy of the data.json file in the data subfolder of the mydoc package. This example assumes that there is a data.json file in the current folder.

import mlreportgen.dom.*;
d = Document('mydoc','html');
package(d,OPCPart('/data/data.json','data.json'));
close(d);

Version History

Introduced in R2014b

expand all