diff --git a/src/java/org/apache/poi/hpsf/wellknown/PropertyIDMap.java b/src/java/org/apache/poi/hpsf/wellknown/PropertyIDMap.java index 02b73f329e..b8bb0de253 100644 --- a/src/java/org/apache/poi/hpsf/wellknown/PropertyIDMap.java +++ b/src/java/org/apache/poi/hpsf/wellknown/PropertyIDMap.java @@ -227,12 +227,25 @@ public class PropertyIDMap extends HashMap { *

If this entry is -1 the links are dirty and should be * re-evaluated.

*/ - public static final int PID_LINKSDIRTY = 16; + public static final int PID_LINKSDIRTY = 0x10; + + /** + *

The entry specifies an estimate of the number of characters + * in the document, including whitespace, as an integer + */ + public static final int PID_CCHWITHSPACES = 0x11; + + // 0x12 Unused + // 0x13 GKPIDDSI_SHAREDDOC - Must be False + // 0x14 GKPIDDSI_LINKBASE - Must not be written + // 0x15 GKPIDDSI_HLINKS - Must not be written /** - *

The highest well-known property ID. Applications are free to use higher values for custom purposes.

+ *

The highest well-known property ID. Applications are free to use + * higher values for custom purposes. (This value is based on Office 12, + * earlier versions of Office had lower values)

*/ - public static final int PID_MAX = PID_LINKSDIRTY; + public static final int PID_MAX = 0x1F;