Does anyone know how character styles are inherited in a pptx file? I know this happens at least:
- Local details (
a:rPr ) - Paragraph local details (
a:pPr/a:defRPr ) - Paragraph Form Form (
a:lstStyle/a:lvlXpPr/a:defRPr ) - Paragraph props from the layout?
- The main paragraph
p:txStyles/(p:titleStyle|p:bodyStyle|p:otherStyle)/a:lvlXpPr/a:defRPr slides ( p:txStyles/(p:titleStyle|p:bodyStyle|p:otherStyle)/a:lvlXpPr/a:defRPr ) - Slide theme (
a:objectDefaults/(a:spDef|a:lnDef|a:txDef)/a:lstStyle/a:lvlXpPr/a:defRPr ) - Default presentation (
p:defaultTextStyle/a:lvlXpPr/a:defRPr )
But, when I compare it with the results of other applications, it does not match. For technical reasons, I cannot use a library that already does this for me, I read xml myself. The apache POI source has some TODO: markings TODO: in their respective areas, and it's hard for me to understand the LibreOffice code.
Edit: To explain further, I want to find the absolute startup properties, not the relative startup properties. On might think so: you have some transparencies for the projector. I want to see the image created on all pages, not just the local one.
c # xml text powerpoint
BrainStorm.exe
source share