@openxmldev/linq-to-ooxml
Version:
OOXML Namespace-related Classes for LINQ to XML for TypeScript
65 lines • 1.97 kB
JavaScript
/**
* @author Thomas Barnekow
* @license MIT
*/
import { XAttribute, XNamespace } from '@openxmldev/linq-to-xml';
/**
* Declares XNamespace and XName fields for the `xmlns:a16="http://schemas.microsoft.com/office/drawing/2014/main"` namespace.
*/
export class A16 {
/** @internal */
constructor() {
// Ignore
}
/**
* Returns the namespace declaration `XAttribute` for this namespace.
*/
static get namespaceDeclaration() {
return new XAttribute(XNamespace.xmlns.getName('a16'), A16.a16.namespaceName);
}
}
/**
* Defines the XML namespace associated with the `a16` prefix.
*/
A16.a16 = XNamespace.get('http://schemas.microsoft.com/office/drawing/2014/main');
/**
* Represents the `a16:colId` XML element.
*
* @remarks
* As an XML element, it has the following:
* - parent XML elements: {@linkcode A.graphicData a:graphicData}
*/
A16.colId = A16.a16.getName('colId');
/**
* Represents the `a16:creationId` XML element.
*
* @remarks
* As an XML element, it has the following:
* - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData}
*/
A16.creationId = A16.a16.getName('creationId');
/**
* Represents the `a16:cxnDERefs` XML element.
*
* @remarks
* As an XML element, it has the following:
* - parent XML elements: {@linkcode A.graphicData a:graphicData}
*/
A16.cxnDERefs = A16.a16.getName('cxnDERefs');
/**
* Represents the `a16:predDERef` XML element.
*
* @remarks
* As an XML element, it has the following:
* - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData}
*/
A16.predDERef = A16.a16.getName('predDERef');
/**
* Represents the `a16:rowId` XML element.
*
* @remarks
* As an XML element, it has the following:
* - parent XML elements: {@linkcode A.graphicData a:graphicData}
*/
A16.rowId = A16.a16.getName('rowId');
//# sourceMappingURL=A16.js.map