Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- error
- 포인터 매핑
- ecma
- svn update
- error fix
- pytest
- idapro
- why error
- Analysis
- ida
- Python
- data distribution
- MySQL
- Ransomware
- open office xml
- h5py.File
- Rat
- debugging
- ida pro
- idb2pat
- commandline
- malware
- hex-rays
- mock.patch
- idapython
- javascript
- x64
- Injection
- TensorFlow
- NumPy Unicode Error
Archives
- Today
- Total
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:16Structure 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
<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