UNPKG

@openxmldev/linq-to-ooxml

Version:

OOXML Namespace-related Classes for LINQ to XML for TypeScript

1,292 lines 72.8 kB
/** * @author Thomas Barnekow * @license MIT */ import { XAttribute, XNamespace } from '@openxmldev/linq-to-xml'; /** * Declares XNamespace and XName fields for the `xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main"` namespace. */ export class P { /** @internal */ constructor() { // Ignore } /** * Returns the namespace declaration `XAttribute` for this namespace. */ static get namespaceDeclaration() { return new XAttribute(XNamespace.xmlns.getName('p'), P.p.namespaceName); } } /** * Defines the XML namespace associated with the `p` prefix. */ P.p = XNamespace.get('http://schemas.openxmlformats.org/presentationml/2006/main'); /** * Represents the `p:anim` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode cBhvr p:cBhvr}, {@linkcode tavLst p:tavLst} * - XML attributes: {@linkcode P14.bounceEnd p14:bounceEnd} */ P.anim = P.p.getName('anim'); /** * Represents the `p:animClr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode by p:by}, {@linkcode cBhvr p:cBhvr}, {@linkcode from p:from}, {@linkcode to p:to} */ P.animClr = P.p.getName('animClr'); /** * Represents the `p:animEffect` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode cBhvr p:cBhvr}, {@linkcode progress p:progress} */ P.animEffect = P.p.getName('animEffect'); /** * Represents the `p:animMotion` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode by p:by}, {@linkcode cBhvr p:cBhvr}, {@linkcode from p:from}, {@linkcode rCtr p:rCtr}, {@linkcode to p:to} * - XML attributes: {@linkcode P14.bounceEnd p14:bounceEnd} */ P.animMotion = P.p.getName('animMotion'); /** * Represents the `p:animRot` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode cBhvr p:cBhvr} * - XML attributes: {@linkcode P14.bounceEnd p14:bounceEnd} */ P.animRot = P.p.getName('animRot'); /** * Represents the `p:animScale` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode by p:by}, {@linkcode cBhvr p:cBhvr}, {@linkcode from p:from}, {@linkcode to p:to} * - XML attributes: {@linkcode P14.bounceEnd p14:bounceEnd} */ P.animScale = P.p.getName('animScale'); /** * Represents the `p:attrName` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode attrNameLst p:attrNameLst} */ P.attrName = P.p.getName('attrName'); /** * Represents the `p:attrNameLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cBhvr p:cBhvr} * - child XML elements: {@linkcode attrName p:attrName} */ P.attrNameLst = P.p.getName('attrNameLst'); /** * Represents the `p:audio` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode cMediaNode p:cMediaNode} */ P.audio = P.p.getName('audio'); /** * Represents the `p:bg` XML elements. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cSld p:cSld}, {@linkcode spTgt p:spTgt} * - child XML elements: {@linkcode bgPr p:bgPr}, {@linkcode bgRef p:bgRef} */ P.bg = P.p.getName('bg'); /** * Represents the `p:bgPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bg p:bg} * - child XML elements: {@linkcode A.blipFill a:blipFill}, {@linkcode A.effectDag a:effectDag}, {@linkcode A.effectLst a:effectLst}, {@linkcode A.gradFill a:gradFill}, {@linkcode A.noFill a:noFill}, {@linkcode A.pattFill a:pattFill}, {@linkcode A.solidFill a:solidFill}, {@linkcode extLst p:extLst} */ P.bgPr = P.p.getName('bgPr'); /** * Represents the `p:bgRef` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bg p:bg} * - 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} */ P.bgRef = P.p.getName('bgRef'); /** * Represents the `p:bldAsOne` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bldGraphic p:bldGraphic} */ P.bldAsOne = P.p.getName('bldAsOne'); /** * Represents the `p:bldDgm` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bldLst p:bldLst} */ P.bldDgm = P.p.getName('bldDgm'); /** * Represents the `p:bldGraphic` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bldLst p:bldLst} * - child XML elements: {@linkcode bldAsOne p:bldAsOne}, {@linkcode bldSub p:bldSub} */ P.bldGraphic = P.p.getName('bldGraphic'); /** * Represents the `p:bldLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode timing p:timing} * - child XML elements: {@linkcode bldDgm p:bldDgm}, {@linkcode bldGraphic p:bldGraphic}, {@linkcode bldOleChart p:bldOleChart}, {@linkcode bldP p:bldP} */ P.bldLst = P.p.getName('bldLst'); /** * Represents the `p:bldOleChart` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bldLst p:bldLst} */ P.bldOleChart = P.p.getName('bldOleChart'); /** * Represents the `p:bldP` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bldLst p:bldLst} * - child XML elements: {@linkcode tmplLst p:tmplLst} */ P.bldP = P.p.getName('bldP'); /** * Represents the `p:bldSub` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bldGraphic p:bldGraphic} * - child XML elements: {@linkcode A.bldChart a:bldChart}, {@linkcode A.bldDgm a:bldDgm} */ P.bldSub = P.p.getName('bldSub'); /** * Represents the `p:blinds` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.blinds = P.p.getName('blinds'); /** * Represents the `p:blipFill` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode pic p:pic} * - child XML elements: {@linkcode A.blip a:blip}, {@linkcode A.srcRect a:srcRect}, {@linkcode A.stretch a:stretch}, {@linkcode A.tile a:tile} */ P.blipFill = P.p.getName('blipFill'); /** * Represents the `p:bodyStyle` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode txStyles p:txStyles} * - child XML elements: {@linkcode A.defPPr a:defPPr}, {@linkcode A.extLst a:extLst}, {@linkcode A.lvl1pPr a:lvl1pPr}, {@linkcode A.lvl2pPr a:lvl2pPr}, {@linkcode A.lvl3pPr a:lvl3pPr}, {@linkcode A.lvl4pPr a:lvl4pPr}, {@linkcode A.lvl5pPr a:lvl5pPr}, {@linkcode A.lvl6pPr a:lvl6pPr}, {@linkcode A.lvl7pPr a:lvl7pPr}, {@linkcode A.lvl8pPr a:lvl8pPr}, {@linkcode A.lvl9pPr a:lvl9pPr} */ P.bodyStyle = P.p.getName('bodyStyle'); /** * Represents the `p:bold` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode embeddedFont p:embeddedFont} * - XML attributes: {@linkcode R.id r:id} */ P.bold = P.p.getName('bold'); /** * Represents the `p:boldItalic` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode embeddedFont p:embeddedFont} * - XML attributes: {@linkcode R.id r:id} */ P.boldItalic = P.p.getName('boldItalic'); /** * Represents the `p:boolVal` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode to p:to}, {@linkcode val p:val} */ P.boolVal = P.p.getName('boolVal'); /** * Represents the `p:browse` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode showPr p:showPr} */ P.browse = P.p.getName('browse'); /** * Represents the `p:by` XML elements. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode animClr p:animClr}, {@linkcode animMotion p:animMotion}, {@linkcode animScale p:animScale} * - child XML elements: {@linkcode hsl p:hsl}, {@linkcode rgb p:rgb} */ P.by = P.p.getName('by'); /** * Represents the `p:cBhvr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode anim p:anim}, {@linkcode animClr p:animClr}, {@linkcode animEffect p:animEffect}, {@linkcode animMotion p:animMotion}, {@linkcode animRot p:animRot}, {@linkcode animScale p:animScale}, {@linkcode cmd p:cmd}, {@linkcode set p:set} * - child XML elements: {@linkcode attrNameLst p:attrNameLst}, {@linkcode cTn p:cTn}, {@linkcode tgtEl p:tgtEl} */ P.cBhvr = P.p.getName('cBhvr'); /** * Represents the `p:charRg` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode txEl p:txEl} */ P.charRg = P.p.getName('charRg'); /** * Represents the `p:checker` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.checker = P.p.getName('checker'); /** * Represents the `p:childTnLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cTn p:cTn} * - child XML elements: {@linkcode anim p:anim}, {@linkcode animClr p:animClr}, {@linkcode animEffect p:animEffect}, {@linkcode animMotion p:animMotion}, {@linkcode animRot p:animRot}, {@linkcode animScale p:animScale}, {@linkcode audio p:audio}, {@linkcode cmd p:cmd}, {@linkcode excl p:excl}, {@linkcode par p:par}, {@linkcode seq p:seq}, {@linkcode set p:set}, {@linkcode video p:video} */ P.childTnLst = P.p.getName('childTnLst'); /** * Represents the `p:circle` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.circle = P.p.getName('circle'); /** * Represents the `p:clrMap` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode handoutMaster p:handoutMaster}, {@linkcode notesMaster p:notesMaster}, {@linkcode sldMaster p:sldMaster} * - child XML elements: {@linkcode A.extLst a:extLst} */ P.clrMap = P.p.getName('clrMap'); /** * Represents the `p:clrMapOvr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode notes p:notes}, {@linkcode sld p:sld}, {@linkcode sldLayout p:sldLayout} * - child XML elements: {@linkcode A.masterClrMapping a:masterClrMapping}, {@linkcode A.overrideClrMapping a:overrideClrMapping} */ P.clrMapOvr = P.p.getName('clrMapOvr'); /** * Represents the `p:clrMru` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentationPr p:presentationPr} * - 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} */ P.clrMru = P.p.getName('clrMru'); /** * Represents the `p:clrVal` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode to p:to}, {@linkcode val p:val} * - 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} */ P.clrVal = P.p.getName('clrVal'); /** * Represents the `p:cm` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cmLst p:cmLst} * - child XML elements: {@linkcode extLst p:extLst}, {@linkcode pos p:pos}, {@linkcode text p:text} */ P.cm = P.p.getName('cm'); /** * Represents the `p:cmAuthor` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cmAuthorLst p:cmAuthorLst} * - child XML elements: {@linkcode extLst p:extLst} */ P.cmAuthor = P.p.getName('cmAuthor'); /** * Represents the `p:cmAuthorLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode cmAuthor p:cmAuthor} */ P.cmAuthorLst = P.p.getName('cmAuthorLst'); /** * Represents the `p:cmd` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode cBhvr p:cBhvr} */ P.cmd = P.p.getName('cmd'); /** * Represents the `p:cMediaNode` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode audio p:audio}, {@linkcode video p:video} * - child XML elements: {@linkcode cTn p:cTn}, {@linkcode tgtEl p:tgtEl} */ P.cMediaNode = P.p.getName('cMediaNode'); /** * Represents the `p:cmLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode cm p:cm} */ P.cmLst = P.p.getName('cmLst'); /** * Represents the `p:cNvCxnSpPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvCxnSpPr p:nvCxnSpPr} * - child XML elements: {@linkcode A.cxnSpLocks a:cxnSpLocks}, {@linkcode A.endCxn a:endCxn}, {@linkcode A.extLst a:extLst}, {@linkcode A.stCxn a:stCxn} */ P.cNvCxnSpPr = P.p.getName('cNvCxnSpPr'); /** * Represents the `p:cNvGraphicFramePr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvGraphicFramePr p:nvGraphicFramePr} * - child XML elements: {@linkcode A.extLst a:extLst}, {@linkcode A.graphicFrameLocks a:graphicFrameLocks} */ P.cNvGraphicFramePr = P.p.getName('cNvGraphicFramePr'); /** * Represents the `p:cNvGrpSpPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvGrpSpPr p:nvGrpSpPr} * - child XML elements: {@linkcode A.extLst a:extLst}, {@linkcode A.grpSpLocks a:grpSpLocks} */ P.cNvGrpSpPr = P.p.getName('cNvGrpSpPr'); /** * Represents the `p:cNvPicPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvPicPr p:nvPicPr} * - child XML elements: {@linkcode A.extLst a:extLst}, {@linkcode A.picLocks a:picLocks} */ P.cNvPicPr = P.p.getName('cNvPicPr'); /** * Represents the `p:cNvPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvCxnSpPr p:nvCxnSpPr}, {@linkcode nvGraphicFramePr p:nvGraphicFramePr}, {@linkcode nvGrpSpPr p:nvGrpSpPr}, {@linkcode nvPicPr p:nvPicPr}, {@linkcode nvSpPr p:nvSpPr} * - child XML elements: {@linkcode A.extLst a:extLst}, {@linkcode A.hlinkClick a:hlinkClick}, {@linkcode A.hlinkHover a:hlinkHover} */ P.cNvPr = P.p.getName('cNvPr'); /** * Represents the `p:cNvSpPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvSpPr p:nvSpPr} * - child XML elements: {@linkcode A.extLst a:extLst}, {@linkcode A.spLocks a:spLocks} */ P.cNvSpPr = P.p.getName('cNvSpPr'); /** * Represents the `p:comb` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.comb = P.p.getName('comb'); /** * Represents the `p:cond` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode endCondLst p:endCondLst}, {@linkcode nextCondLst p:nextCondLst}, {@linkcode prevCondLst p:prevCondLst}, {@linkcode stCondLst p:stCondLst} * - child XML elements: {@linkcode rtn p:rtn}, {@linkcode tgtEl p:tgtEl}, {@linkcode tn p:tn} */ P.cond = P.p.getName('cond'); /** * Represents the `p:contentPart` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData}, {@linkcode grpSp p:grpSp}, {@linkcode spTree p:spTree} * - child XML elements: {@linkcode P14.extLst p14:extLst}, {@linkcode P14.nvContentPartPr p14:nvContentPartPr}, {@linkcode P14.xfrm p14:xfrm} * - XML attributes: {@linkcode P14.bwMode p14:bwMode}, {@linkcode R.id r:id} */ P.contentPart = P.p.getName('contentPart'); /** * Represents the `p:control` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode controls p:controls} * - child XML elements: {@linkcode extLst p:extLst}, {@linkcode pic p:pic} * - XML attributes: {@linkcode R.id r:id} */ P.control = P.p.getName('control'); /** * Represents the `p:controls` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cSld p:cSld} * - child XML elements: {@linkcode control p:control} */ P.controls = P.p.getName('controls'); /** * Represents the `p:cover` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.cover = P.p.getName('cover'); /** * Represents the `p:cSld` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode handoutMaster p:handoutMaster}, {@linkcode notes p:notes}, {@linkcode notesMaster p:notesMaster}, {@linkcode sld p:sld}, {@linkcode sldLayout p:sldLayout}, {@linkcode sldMaster p:sldMaster} * - child XML elements: {@linkcode bg p:bg}, {@linkcode controls p:controls}, {@linkcode custDataLst p:custDataLst}, {@linkcode extLst p:extLst}, {@linkcode spTree p:spTree} */ P.cSld = P.p.getName('cSld'); /** * Represents the `p:cSldViewPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode notesViewPr p:notesViewPr}, {@linkcode slideViewPr p:slideViewPr} * - child XML elements: {@linkcode cViewPr p:cViewPr}, {@linkcode guideLst p:guideLst} */ P.cSldViewPr = P.p.getName('cSldViewPr'); /** * Represents the `p:cTn` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cBhvr p:cBhvr}, {@linkcode cMediaNode p:cMediaNode}, {@linkcode excl p:excl}, {@linkcode par p:par}, {@linkcode seq p:seq} * - child XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode endCondLst p:endCondLst}, {@linkcode endSync p:endSync}, {@linkcode iterate p:iterate}, {@linkcode stCondLst p:stCondLst}, {@linkcode subTnLst p:subTnLst} * - XML attributes: {@linkcode P14.presetBounceEnd p14:presetBounceEnd} */ P.cTn = P.p.getName('cTn'); /** * Represents the `p:custData` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode custDataLst p:custDataLst} * - XML attributes: {@linkcode R.id r:id} */ P.custData = P.p.getName('custData'); /** * Represents the `p:custDataLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cSld p:cSld}, {@linkcode nvPr p:nvPr}, {@linkcode presentation p:presentation}, {@linkcode P14.nvPr p14:nvPr} * - child XML elements: {@linkcode custData p:custData}, {@linkcode tags p:tags} */ P.custDataLst = P.p.getName('custDataLst'); /** * Represents the `p:custShow` XML elements. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode custShowLst p:custShowLst}, {@linkcode htmlPubPr p:htmlPubPr}, {@linkcode showPr p:showPr} * - child XML elements: {@linkcode extLst p:extLst}, {@linkcode sldLst p:sldLst} */ P.custShow = P.p.getName('custShow'); /** * Represents the `p:custShowLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} * - child XML elements: {@linkcode custShow p:custShow} */ P.custShowLst = P.p.getName('custShowLst'); /** * Represents the `p:cut` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.cut = P.p.getName('cut'); /** * Represents the `p:cViewPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cSldViewPr p:cSldViewPr}, {@linkcode notesTextViewPr p:notesTextViewPr}, {@linkcode outlineViewPr p:outlineViewPr}, {@linkcode sorterViewPr p:sorterViewPr} * - child XML elements: {@linkcode origin p:origin}, {@linkcode scale p:scale} */ P.cViewPr = P.p.getName('cViewPr'); /** * Represents the `p:cxnSp` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode grpSp p:grpSp}, {@linkcode spTree p:spTree} * - child XML elements: {@linkcode extLst p:extLst}, {@linkcode nvCxnSpPr p:nvCxnSpPr}, {@linkcode spPr p:spPr}, {@linkcode style p:style} */ P.cxnSp = P.p.getName('cxnSp'); /** * Represents the `p:defaultTextStyle` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} * - child XML elements: {@linkcode A.defPPr a:defPPr}, {@linkcode A.extLst a:extLst}, {@linkcode A.lvl1pPr a:lvl1pPr}, {@linkcode A.lvl2pPr a:lvl2pPr}, {@linkcode A.lvl3pPr a:lvl3pPr}, {@linkcode A.lvl4pPr a:lvl4pPr}, {@linkcode A.lvl5pPr a:lvl5pPr}, {@linkcode A.lvl6pPr a:lvl6pPr}, {@linkcode A.lvl7pPr a:lvl7pPr}, {@linkcode A.lvl8pPr a:lvl8pPr}, {@linkcode A.lvl9pPr a:lvl9pPr} */ P.defaultTextStyle = P.p.getName('defaultTextStyle'); /** * Represents the `p:diamond` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.diamond = P.p.getName('diamond'); /** * Represents the `p:dissolve` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.dissolve = P.p.getName('dissolve'); /** * Represents the `p:embed` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode oleObj p:oleObj} * - child XML elements: {@linkcode extLst p:extLst} */ P.embed = P.p.getName('embed'); /** * Represents the `p:embeddedFont` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode embeddedFontLst p:embeddedFontLst} * - child XML elements: {@linkcode bold p:bold}, {@linkcode boldItalic p:boldItalic}, {@linkcode font p:font}, {@linkcode italic p:italic}, {@linkcode regular p:regular} */ P.embeddedFont = P.p.getName('embeddedFont'); /** * Represents the `p:embeddedFontLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} * - child XML elements: {@linkcode embeddedFont p:embeddedFont} */ P.embeddedFontLst = P.p.getName('embeddedFontLst'); /** * Represents the `p:endCondLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cTn p:cTn} * - child XML elements: {@linkcode cond p:cond} */ P.endCondLst = P.p.getName('endCondLst'); /** * Represents the `p:endSnd` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode sndAc p:sndAc} */ P.endSnd = P.p.getName('endSnd'); /** * Represents the `p:endSync` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cTn p:cTn} * - child XML elements: {@linkcode rtn p:rtn}, {@linkcode tgtEl p:tgtEl}, {@linkcode tn p:tn} */ P.endSync = P.p.getName('endSync'); /** * Represents the `p:excl` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst} * - child XML elements: {@linkcode cTn p:cTn} */ P.excl = P.p.getName('excl'); /** * Represents the `p:ext` XML elements. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode extLst p:extLst}, {@linkcode P14.extLst p14:extLst}, {@linkcode P15.extLst p15:extLst} * - child XML elements: {@linkcode A14.m a14:m}, {@linkcode P14.browseMode p14:browseMode}, {@linkcode P14.creationId p14:creationId}, {@linkcode P14.defaultImageDpi p14:defaultImageDpi}, {@linkcode P14.discardImageEditData p14:discardImageEditData}, {@linkcode P14.laserClr p14:laserClr}, {@linkcode P14.laserTraceLst p14:laserTraceLst}, {@linkcode P14.media p14:media}, {@linkcode P14.modId p14:modId}, {@linkcode P14.sectionLst p14:sectionLst}, {@linkcode P14.sectionPr p14:sectionPr}, {@linkcode P14.showEvtLst p14:showEvtLst}, {@linkcode P14.showMediaCtrls p14:showMediaCtrls}, {@linkcode P15.chartTrackingRefBased p15:chartTrackingRefBased}, {@linkcode P15.notesGuideLst p15:notesGuideLst}, {@linkcode P15.presenceInfo p15:presenceInfo}, {@linkcode P15.sldGuideLst p15:sldGuideLst}, {@linkcode P15.threadingInfo p15:threadingInfo} */ P.ext = P.p.getName('ext'); /** * Represents the `p:extLst` XML elements. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode bgPr p:bgPr}, {@linkcode cm p:cm}, {@linkcode cmAuthor p:cmAuthor}, {@linkcode control p:control}, {@linkcode cSld p:cSld}, {@linkcode custShow p:custShow}, {@linkcode cxnSp p:cxnSp}, {@linkcode embed p:embed}, {@linkcode graphicFrame p:graphicFrame}, {@linkcode grpSp p:grpSp}, {@linkcode handoutMaster p:handoutMaster}, {@linkcode handoutMasterId p:handoutMasterId}, {@linkcode hf p:hf}, {@linkcode htmlPubPr p:htmlPubPr}, {@linkcode link p:link}, {@linkcode normalViewPr p:normalViewPr}, {@linkcode notes p:notes}, {@linkcode notesMaster p:notesMaster}, {@linkcode notesMasterId p:notesMasterId}, {@linkcode notesTextViewPr p:notesTextViewPr}, {@linkcode notesViewPr p:notesViewPr}, {@linkcode nvPr p:nvPr}, {@linkcode outlineViewPr p:outlineViewPr}, {@linkcode ph p:ph}, {@linkcode photoAlbum p:photoAlbum}, {@linkcode pic p:pic}, {@linkcode presentation p:presentation}, {@linkcode presentationPr p:presentationPr}, {@linkcode prnPr p:prnPr}, {@linkcode showPr p:showPr}, {@linkcode sld p:sld}, {@linkcode sldId p:sldId}, {@linkcode sldLayout p:sldLayout}, {@linkcode sldLayoutId p:sldLayoutId}, {@linkcode sldMaster p:sldMaster}, {@linkcode sldMasterId p:sldMasterId}, {@linkcode sldSyncPr p:sldSyncPr}, {@linkcode slideViewPr p:slideViewPr}, {@linkcode sorterViewPr p:sorterViewPr}, {@linkcode sp p:sp}, {@linkcode spTree p:spTree}, {@linkcode timing p:timing}, {@linkcode transition p:transition}, {@linkcode txStyles p:txStyles}, {@linkcode viewPr p:viewPr}, {@linkcode webPr p:webPr}, {@linkcode P14.nvPr p14:nvPr} * - child XML elements: {@linkcode ext p:ext} */ P.extLst = P.p.getName('extLst'); /** * Represents the `p:fade` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.fade = P.p.getName('fade'); /** * Represents the `p:fltVal` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode progress p:progress}, {@linkcode to p:to}, {@linkcode val p:val} */ P.fltVal = P.p.getName('fltVal'); /** * Represents the `p:font` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode embeddedFont p:embeddedFont} */ P.font = P.p.getName('font'); /** * Represents the `p:from` XML elements. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode animClr p:animClr}, {@linkcode animMotion p:animMotion}, {@linkcode animScale p:animScale} * - 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} */ P.from = P.p.getName('from'); /** * Represents the `p:graphicEl` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode spTgt p:spTgt} * - child XML elements: {@linkcode A.chart a:chart}, {@linkcode A.dgm a:dgm} */ P.graphicEl = P.p.getName('graphicEl'); /** * Represents the `p:graphicFrame` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode grpSp p:grpSp}, {@linkcode spTree p:spTree} * - child XML elements: {@linkcode A.graphic a:graphic}, {@linkcode extLst p:extLst}, {@linkcode nvGraphicFramePr p:nvGraphicFramePr}, {@linkcode xfrm p:xfrm} */ P.graphicFrame = P.p.getName('graphicFrame'); /** * Represents the `p:gridSpacing` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode viewPr p:viewPr} */ P.gridSpacing = P.p.getName('gridSpacing'); /** * Represents the `p:grpSp` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode grpSp p:grpSp}, {@linkcode spTree p:spTree} * - child XML elements: {@linkcode contentPart p:contentPart}, {@linkcode cxnSp p:cxnSp}, {@linkcode extLst p:extLst}, {@linkcode graphicFrame p:graphicFrame}, {@linkcode grpSp p:grpSp}, {@linkcode grpSpPr p:grpSpPr}, {@linkcode nvGrpSpPr p:nvGrpSpPr}, {@linkcode pic p:pic}, {@linkcode sp p:sp} */ P.grpSp = P.p.getName('grpSp'); /** * Represents the `p:grpSpPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode grpSp p:grpSp}, {@linkcode spTree p:spTree} * - child XML elements: {@linkcode A.blipFill a:blipFill}, {@linkcode A.effectDag a:effectDag}, {@linkcode A.effectLst a:effectLst}, {@linkcode A.extLst a:extLst}, {@linkcode A.gradFill a:gradFill}, {@linkcode A.grpFill a:grpFill}, {@linkcode A.noFill a:noFill}, {@linkcode A.pattFill a:pattFill}, {@linkcode A.scene3d a:scene3d}, {@linkcode A.solidFill a:solidFill}, {@linkcode A.xfrm a:xfrm} */ P.grpSpPr = P.p.getName('grpSpPr'); /** * Represents the `p:guide` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode guideLst p:guideLst} */ P.guide = P.p.getName('guide'); /** * Represents the `p:guideLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cSldViewPr p:cSldViewPr} * - child XML elements: {@linkcode guide p:guide} */ P.guideLst = P.p.getName('guideLst'); /** * Represents the `p:handoutMaster` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode clrMap p:clrMap}, {@linkcode cSld p:cSld}, {@linkcode extLst p:extLst}, {@linkcode hf p:hf} */ P.handoutMaster = P.p.getName('handoutMaster'); /** * Represents the `p:handoutMasterId` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode handoutMasterIdLst p:handoutMasterIdLst} * - child XML elements: {@linkcode extLst p:extLst} * - XML attributes: {@linkcode R.id r:id} */ P.handoutMasterId = P.p.getName('handoutMasterId'); /** * Represents the `p:handoutMasterIdLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} * - child XML elements: {@linkcode handoutMasterId p:handoutMasterId} */ P.handoutMasterIdLst = P.p.getName('handoutMasterIdLst'); /** * Represents the `p:hf` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode handoutMaster p:handoutMaster}, {@linkcode notesMaster p:notesMaster}, {@linkcode sldLayout p:sldLayout}, {@linkcode sldMaster p:sldMaster} * - child XML elements: {@linkcode extLst p:extLst} */ P.hf = P.p.getName('hf'); /** * Represents the `p:hsl` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode by p:by} */ P.hsl = P.p.getName('hsl'); /** * Represents the `p:htmlPubPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentationPr p:presentationPr} * - child XML elements: {@linkcode custShow p:custShow}, {@linkcode extLst p:extLst}, {@linkcode sldAll p:sldAll}, {@linkcode sldRg p:sldRg} * - XML attributes: {@linkcode R.id r:id} */ P.htmlPubPr = P.p.getName('htmlPubPr'); /** * Represents the `p:inkTgt` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode tgtEl p:tgtEl} */ P.inkTgt = P.p.getName('inkTgt'); /** * Represents the `p:intVal` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode to p:to}, {@linkcode val p:val} */ P.intVal = P.p.getName('intVal'); /** * Represents the `p:italic` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode embeddedFont p:embeddedFont} * - XML attributes: {@linkcode R.id r:id} */ P.italic = P.p.getName('italic'); /** * Represents the `p:iterate` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cTn p:cTn} * - child XML elements: {@linkcode tmAbs p:tmAbs}, {@linkcode tmPct p:tmPct} */ P.iterate = P.p.getName('iterate'); /** * Represents the `p:kinsoku` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} */ P.kinsoku = P.p.getName('kinsoku'); /** * Represents the `p:kiosk` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode showPr p:showPr} */ P.kiosk = P.p.getName('kiosk'); /** * Represents the `p:link` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode oleObj p:oleObj} * - child XML elements: {@linkcode extLst p:extLst} */ P.link = P.p.getName('link'); /** * Represents the `p:modifyVerifier` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} */ P.modifyVerifier = P.p.getName('modifyVerifier'); /** * Represents the `p:newsflash` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.newsflash = P.p.getName('newsflash'); /** * Represents the `p:nextCondLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode seq p:seq} * - child XML elements: {@linkcode cond p:cond} */ P.nextCondLst = P.p.getName('nextCondLst'); /** * Represents the `p:normalViewPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode viewPr p:viewPr} * - child XML elements: {@linkcode extLst p:extLst}, {@linkcode restoredLeft p:restoredLeft}, {@linkcode restoredTop p:restoredTop} */ P.normalViewPr = P.p.getName('normalViewPr'); /** * Represents the `p:notes` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode clrMapOvr p:clrMapOvr}, {@linkcode cSld p:cSld}, {@linkcode extLst p:extLst} */ P.notes = P.p.getName('notes'); /** * Represents the `p:notesMaster` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode clrMap p:clrMap}, {@linkcode cSld p:cSld}, {@linkcode extLst p:extLst}, {@linkcode hf p:hf}, {@linkcode notesStyle p:notesStyle} */ P.notesMaster = P.p.getName('notesMaster'); /** * Represents the `p:notesMasterId` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode notesMasterIdLst p:notesMasterIdLst} * - child XML elements: {@linkcode extLst p:extLst} * - XML attributes: {@linkcode R.id r:id} */ P.notesMasterId = P.p.getName('notesMasterId'); /** * Represents the `p:notesMasterIdLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} * - child XML elements: {@linkcode notesMasterId p:notesMasterId} */ P.notesMasterIdLst = P.p.getName('notesMasterIdLst'); /** * Represents the `p:notesStyle` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode notesMaster p:notesMaster} * - child XML elements: {@linkcode A.defPPr a:defPPr}, {@linkcode A.extLst a:extLst}, {@linkcode A.lvl1pPr a:lvl1pPr}, {@linkcode A.lvl2pPr a:lvl2pPr}, {@linkcode A.lvl3pPr a:lvl3pPr}, {@linkcode A.lvl4pPr a:lvl4pPr}, {@linkcode A.lvl5pPr a:lvl5pPr}, {@linkcode A.lvl6pPr a:lvl6pPr}, {@linkcode A.lvl7pPr a:lvl7pPr}, {@linkcode A.lvl8pPr a:lvl8pPr}, {@linkcode A.lvl9pPr a:lvl9pPr} */ P.notesStyle = P.p.getName('notesStyle'); /** * Represents the `p:notesSz` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} */ P.notesSz = P.p.getName('notesSz'); /** * Represents the `p:notesTextViewPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode viewPr p:viewPr} * - child XML elements: {@linkcode cViewPr p:cViewPr}, {@linkcode extLst p:extLst} */ P.notesTextViewPr = P.p.getName('notesTextViewPr'); /** * Represents the `p:notesViewPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode viewPr p:viewPr} * - child XML elements: {@linkcode cSldViewPr p:cSldViewPr}, {@linkcode extLst p:extLst} */ P.notesViewPr = P.p.getName('notesViewPr'); /** * Represents the `p:nvCxnSpPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cxnSp p:cxnSp} * - child XML elements: {@linkcode cNvCxnSpPr p:cNvCxnSpPr}, {@linkcode cNvPr p:cNvPr}, {@linkcode nvPr p:nvPr} */ P.nvCxnSpPr = P.p.getName('nvCxnSpPr'); /** * Represents the `p:nvGraphicFramePr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode graphicFrame p:graphicFrame} * - child XML elements: {@linkcode cNvGraphicFramePr p:cNvGraphicFramePr}, {@linkcode cNvPr p:cNvPr}, {@linkcode nvPr p:nvPr} */ P.nvGraphicFramePr = P.p.getName('nvGraphicFramePr'); /** * Represents the `p:nvGrpSpPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode grpSp p:grpSp}, {@linkcode spTree p:spTree} * - child XML elements: {@linkcode cNvGrpSpPr p:cNvGrpSpPr}, {@linkcode cNvPr p:cNvPr}, {@linkcode nvPr p:nvPr} */ P.nvGrpSpPr = P.p.getName('nvGrpSpPr'); /** * Represents the `p:nvPicPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode pic p:pic} * - child XML elements: {@linkcode cNvPicPr p:cNvPicPr}, {@linkcode cNvPr p:cNvPr}, {@linkcode nvPr p:nvPr} */ P.nvPicPr = P.p.getName('nvPicPr'); /** * Represents the `p:nvPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvCxnSpPr p:nvCxnSpPr}, {@linkcode nvGraphicFramePr p:nvGraphicFramePr}, {@linkcode nvGrpSpPr p:nvGrpSpPr}, {@linkcode nvPicPr p:nvPicPr}, {@linkcode nvSpPr p:nvSpPr} * - child XML elements: {@linkcode A.audioCd a:audioCd}, {@linkcode A.audioFile a:audioFile}, {@linkcode A.quickTimeFile a:quickTimeFile}, {@linkcode A.videoFile a:videoFile}, {@linkcode A.wavAudioFile a:wavAudioFile}, {@linkcode custDataLst p:custDataLst}, {@linkcode extLst p:extLst}, {@linkcode ph p:ph} */ P.nvPr = P.p.getName('nvPr'); /** * Represents the `p:nvSpPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode sp p:sp} * - child XML elements: {@linkcode cNvPr p:cNvPr}, {@linkcode cNvSpPr p:cNvSpPr}, {@linkcode nvPr p:nvPr} */ P.nvSpPr = P.p.getName('nvSpPr'); /** * Represents the `p:oleChartEl` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode spTgt p:spTgt} */ P.oleChartEl = P.p.getName('oleChartEl'); /** * Represents the `p:oleObj` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode embed p:embed}, {@linkcode link p:link}, {@linkcode pic p:pic} * - XML attributes: {@linkcode R.id r:id} */ P.oleObj = P.p.getName('oleObj'); /** * Represents the `p:origin` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cViewPr p:cViewPr} */ P.origin = P.p.getName('origin'); /** * Represents the `p:otherStyle` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode txStyles p:txStyles} * - child XML elements: {@linkcode A.defPPr a:defPPr}, {@linkcode A.extLst a:extLst}, {@linkcode A.lvl1pPr a:lvl1pPr}, {@linkcode A.lvl2pPr a:lvl2pPr}, {@linkcode A.lvl3pPr a:lvl3pPr}, {@linkcode A.lvl4pPr a:lvl4pPr}, {@linkcode A.lvl5pPr a:lvl5pPr}, {@linkcode A.lvl6pPr a:lvl6pPr}, {@linkcode A.lvl7pPr a:lvl7pPr}, {@linkcode A.lvl8pPr a:lvl8pPr}, {@linkcode A.lvl9pPr a:lvl9pPr} */ P.otherStyle = P.p.getName('otherStyle'); /** * Represents the `p:outlineViewPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode viewPr p:viewPr} * - child XML elements: {@linkcode cViewPr p:cViewPr}, {@linkcode extLst p:extLst}, {@linkcode sldLst p:sldLst} */ P.outlineViewPr = P.p.getName('outlineViewPr'); /** * Represents the `p:par` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode childTnLst p:childTnLst}, {@linkcode subTnLst p:subTnLst}, {@linkcode tnLst p:tnLst} * - child XML elements: {@linkcode cTn p:cTn} */ P.par = P.p.getName('par'); /** * Represents the `p:penClr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode showPr p:showPr} * - 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} */ P.penClr = P.p.getName('penClr'); /** * Represents the `p:ph` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode nvPr p:nvPr}, {@linkcode P14.nvPr p14:nvPr} * - child XML elements: {@linkcode extLst p:extLst} */ P.ph = P.p.getName('ph'); /** * Represents the `p:photoAlbum` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentation p:presentation} * - child XML elements: {@linkcode extLst p:extLst} */ P.photoAlbum = P.p.getName('photoAlbum'); /** * Represents the `p:pic` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode control p:control}, {@linkcode grpSp p:grpSp}, {@linkcode oleObj p:oleObj}, {@linkcode spTree p:spTree} * - child XML elements: {@linkcode blipFill p:blipFill}, {@linkcode extLst p:extLst}, {@linkcode nvPicPr p:nvPicPr}, {@linkcode spPr p:spPr}, {@linkcode style p:style} */ P.pic = P.p.getName('pic'); /** * Represents the `p:plus` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.plus = P.p.getName('plus'); /** * Represents the `p:pos` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode cm p:cm} */ P.pos = P.p.getName('pos'); /** * Represents the `p:present` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode showPr p:showPr} */ P.present = P.p.getName('present'); /** * Represents the `p:presentation` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode custDataLst p:custDataLst}, {@linkcode custShowLst p:custShowLst}, {@linkcode defaultTextStyle p:defaultTextStyle}, {@linkcode embeddedFontLst p:embeddedFontLst}, {@linkcode extLst p:extLst}, {@linkcode handoutMasterIdLst p:handoutMasterIdLst}, {@linkcode kinsoku p:kinsoku}, {@linkcode modifyVerifier p:modifyVerifier}, {@linkcode notesMasterIdLst p:notesMasterIdLst}, {@linkcode notesSz p:notesSz}, {@linkcode photoAlbum p:photoAlbum}, {@linkcode sldIdLst p:sldIdLst}, {@linkcode sldMasterIdLst p:sldMasterIdLst}, {@linkcode sldSz p:sldSz} */ P.presentation = P.p.getName('presentation'); /** * Represents the `p:presentationPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode A.graphicData a:graphicData} * - child XML elements: {@linkcode clrMru p:clrMru}, {@linkcode extLst p:extLst}, {@linkcode htmlPubPr p:htmlPubPr}, {@linkcode prnPr p:prnPr}, {@linkcode showPr p:showPr}, {@linkcode webPr p:webPr} */ P.presentationPr = P.p.getName('presentationPr'); /** * Represents the `p:prevCondLst` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode seq p:seq} * - child XML elements: {@linkcode cond p:cond} */ P.prevCondLst = P.p.getName('prevCondLst'); /** * Represents the `p:pRg` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode txEl p:txEl} */ P.pRg = P.p.getName('pRg'); /** * Represents the `p:prnPr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode presentationPr p:presentationPr} * - child XML elements: {@linkcode extLst p:extLst} */ P.prnPr = P.p.getName('prnPr'); /** * Represents the `p:progress` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode animEffect p:animEffect} * - child XML elements: {@linkcode fltVal p:fltVal} */ P.progress = P.p.getName('progress'); /** * Represents the `p:pull` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.pull = P.p.getName('pull'); /** * Represents the `p:push` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.push = P.p.getName('push'); /** * Represents the `p:random` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.random = P.p.getName('random'); /** * Represents the `p:randomBar` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode transition p:transition} */ P.randomBar = P.p.getName('randomBar'); /** * Represents the `p:rCtr` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode animMotion p:animMotion} */ P.rCtr = P.p.getName('rCtr'); /** * Represents the `p:regular` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode embeddedFont p:embeddedFont} * - XML attributes: {@linkcode R.id r:id} */ P.regular = P.p.getName('regular'); /** * Represents the `p:restoredLeft` XML element. * * @remarks * As an XML element, it has the following: * - parent XML elements: {@linkcode normalViewPr p:normalViewPr} */ P.restoredLeft = P.p.getName('restoredLeft'); /** * Represents the `