13 Security Lab

Office Open XML - Paragraph Class - Element Type 본문

Computer Science/Windows Externals

Office Open XML - Paragraph Class - Element Type

Maj0r Tom 2019. 5. 12. 16:16

Structure brief of OOXML

To understand OOXML, in many features structure of OOXML "Paragraph", "Element","Run" Things

the below picture shows Hierarchical structure of that.

Office Open XML - Paragraph Class -  Element Type

ElementType Structure

<w:p
	<w:r
    	<w:t> display title </w:t?>

 

Properties
Paragraph properties are specified in <pPr>. Each property is a child element of <pPr>. When appearing within a paragraph (w:p) element rather than within a style element (w:style), they are direct formatting and are applied after style/numbering/table properties. Compare with paragraph styles.

 

WordprocessingML elementOpen XML SDK 2.5 Class

p Paragraph
pPr ParagraphProperties
r Run
t Text

 

Comments