OpenXmlPackage.getRelationshipsByRelationshipType (relationshipType)
Return to the
Open XML SDK for JavaScript
Developer CenterGets an array that contains all relationships with the specified relationship type.
Syntax
var relList = OpenXmlPackage.getRelationshipsByRelationshipType(relationshipType)
Return Value
Returns an array of OpenXmlRelationship objects that contains the relationships with the specified relationship type.
Usage
var relList = pkg.getRelationshipsByRelationshipType(openXml.relationshipTypes.mainDocument);
Example
// Open a blank document that is stored as a base64 string.
var doc = new openXml.OpenXmlPackage(blankDocument_base64);
// Get a list of all parts in the document and list them in the output text area.
var rels = doc.getRelationshipsByRelationshipType(openXml.relationshipTypes.mainDocument);
var o = [];
for (var i = 0; i < rels.length; i++) {
var rel = rels[i];
o.push("relationship id: " + rel.relationshipId);
o.push("rel type: " + rel.relationshipType);
o.push("target: " + rel.target);
o.push("targetMode: " + rel.targetMode);
o.push("targetFullName: " + rel.targetFullName);
o.push("");
}
return { output: o };