Get the document properties. This gives you access to the core ooxml properties, and the extended ooxml properties.
()
| 165 | * core ooxml properties, and the extended ooxml properties. |
| 166 | */ |
| 167 | public POIXMLProperties getProperties() { |
| 168 | if(properties == null) { |
| 169 | try { |
| 170 | properties = new POIXMLProperties(pkg); |
| 171 | } catch (Exception e){ |
| 172 | throw new POIXMLException(e); |
| 173 | } |
| 174 | } |
| 175 | return properties; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Get the document's embedded files. |
no outgoing calls