UNPKG

@openxmldev/linq-to-ooxml

Version:

OOXML Namespace-related Classes for LINQ to XML for TypeScript

57 lines 1.85 kB
/** * @author Thomas Barnekow * @license MIT */ import { XAttribute, XNamespace } from '@openxmldev/linq-to-xml'; /** * Declares XNamespace and XName fields for the `xmlns:a15="http://schemas.microsoft.com/office/drawing/2012/main"` namespace. */ export class A15 { /** @internal */ constructor() { // Ignore } /** * Returns the namespace declaration `XAttribute` for this namespace. */ static get namespaceDeclaration() { return new XAttribute(XNamespace.xmlns.getName('a15'), A15.a15.namespaceName); } } /** * Defines the XML namespace associated with the `a15` prefix. */ A15.a15 = XNamespace.get('http://schemas.microsoft.com/office/drawing/2012/main'); /** * Represents the `a15:backgroundPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData} */ A15.backgroundPr = A15.a15.getName('backgroundPr'); /** * Represents the `a15:nonVisualGroupProps` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData} */ A15.nonVisualGroupProps = A15.a15.getName('nonVisualGroupProps'); /** * Represents the `a15:objectPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData} */ A15.objectPr = A15.a15.getName('objectPr'); /** * Represents the `a15:signatureLine` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData} */ A15.signatureLine = A15.a15.getName('signatureLine'); //# sourceMappingURL=A15.js.map