UNPKG

@openxmldev/linq-to-ooxml

Version:

OOXML Namespace-related Classes for LINQ to XML for TypeScript

105 lines (104 loc) 4.02 kB
/** * @author Thomas Barnekow * @license MIT */ import { XAttribute, XName, XNamespace } from '@openxmldev/linq-to-xml'; /** * Declares XNamespace and XName fields for the `xmlns:p15="http://schemas.microsoft.com/office/powerpoint/2012/main"` namespace. */ export declare class P15 { /** * Defines the XML namespace associated with the `p15` prefix. */ static readonly p15: XNamespace; /** * Returns the namespace declaration `XAttribute` for this namespace. */ static get namespaceDeclaration(): XAttribute; /** * Represents the `p15:chartTrackingRefBased` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData}, {@linkcode P.ext p:ext} */ static readonly chartTrackingRefBased: XName; /** * Represents the `p15:clr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode guide p15:guide} * - child XML elements: {@linkcode A.hslClr a:hslClr}, {@linkcode A.prstClr a:prstClr}, {@linkcode A.schemeClr a:schemeClr}, {@linkcode A.scrgbClr a:scrgbClr}, {@linkcode A.srgbClr a:srgbClr}, {@linkcode A.sysClr a:sysClr} */ static readonly clr: XName; /** * Represents the `p15:extLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode guide p15:guide}, {@linkcode notesGuideLst p15:notesGuideLst}, {@linkcode sldGuideLst p15:sldGuideLst} * - child XML elements: {@linkcode P.ext p:ext} */ static readonly extLst: XName; /** * Represents the `p15:guide` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode notesGuideLst p15:notesGuideLst}, {@linkcode sldGuideLst p15:sldGuideLst} * - child XML elements: {@linkcode clr p15:clr}, {@linkcode extLst p15:extLst} */ static readonly guide: XName; /** * Represents the `p15:notesGuideLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData}, {@linkcode P.ext p:ext} * - child XML elements: {@linkcode extLst p15:extLst}, {@linkcode guide p15:guide} */ static readonly notesGuideLst: XName; /** * Represents the `p15:parentCm` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode threadingInfo p15:threadingInfo} */ static readonly parentCm: XName; /** * Represents the `p15:presenceInfo` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData}, {@linkcode P.ext p:ext} */ static readonly presenceInfo: XName; /** * Represents the `p15:prstTrans` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData}, {@linkcode P.transition p:transition} */ static readonly prstTrans: XName; /** * Represents the `p15:sldGuideLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData}, {@linkcode P.ext p:ext} * - child XML elements: {@linkcode extLst p15:extLst}, {@linkcode guide p15:guide} */ static readonly sldGuideLst: XName; /** * Represents the `p15:threadingInfo` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData}, {@linkcode P.ext p:ext} * - child XML elements: {@linkcode parentCm p15:parentCm} */ static readonly threadingInfo: XName; }