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 |
Tags
- Ransomware
- open office xml
- ecma
- idapython
- Injection
- idb2pat
- data distribution
- x64
- Python
- malware
- 포인터 매핑
- h5py.File
- ida pro
- MySQL
- idapro
- why error
- svn update
- commandline
- pytest
- hex-rays
- mock.patch
- TensorFlow
- Analysis
- debugging
- javascript
- error
- NumPy Unicode Error
- Rat
- ida
- error fix
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