OfficeDoc Class
Properties Methods Events Config Settings Errors
The OfficeDoc class implements support for the Open XML Packaging Format used in Office 2007 documents.
Syntax
OfficeDoc
Remarks
The class provides a way to extract information and content from an Open XML packaged document, examine the package properties and basic read/update facilities.
Property List
The following is the full list of the properties of the class with short descriptions. Click on the links for further details.
ContentTypes | Collection of content type entries. |
Namespaces | Collection of namespaces in the current namespace stack. |
PackagePath | The path to the Open XML package file. |
PackageProperties | Collection of core/app/custom metadata properties associated with the archive. |
PartData | The contents of the currently selected part. |
PartName | The name of the currently selected part. |
Relationships | Collection of Relationships in the current relationships (*.rels) file. |
Validate | This property controls whether documents are validated during parsing. |
XAttributes | A collection of attributes of the current element. |
XChildren | Collection of child elements of the current element. |
XElement | The name of the current element. |
XNamespace | The namespace of the current element. |
XParent | This property includes the parent of the current element. |
XPath | This property provides a way to point to a specific element in the document. |
XPrefix | The prefix of the current element. |
XSubTree | This property includes a snapshot of the current element in the document. |
XText | The text of the current element. |
Method List
The following is the full list of the methods of the class with short descriptions. Click on the links for further details.
Close | Closes the Open XML package archive. |
Config | Sets or retrieves a configuration setting. |
ExtractPart | Reads the contents of the currently selected part. |
FindPartByType | Looks up a part in the current relationships file by it's type namespace URI. |
GetPropertyValue | Returns the value of the specified package property. |
ListParts | List all the parts contained in the document and their relationships. |
Open | Opens the Open XML package archive. |
ParsePart | Parses the specified part as XML. |
ReadRelationships | Reads the relationships file in the archive associated with the specified part. |
ReplacePart | Replaces the contents of the specified part in the package. |
Reset | Resets the class. |
ResolveContentType | Returns the content type of the specified part. |
Event List
The following is the full list of the events fired by the class with short descriptions. Click on the links for further details.
BeginFile | Fired before each file is processed. |
Characters | This event is fired for plaintext segments of the input stream. |
Comment | This event is fired when a comment section is encountered. |
EndElement | This event is fired when an end-element tag is encountered. |
EndFile | Fired after each file is processed. |
EndPrefixMapping | This event is fired when leaving the scope of a namespace declaration. |
Error | Fired when information is available about errors during data delivery. |
EvalEntity | This event is fired every time an entity needs to be evaluated. |
IgnorableWhitespace | This event is fired when a section of ignorable whitespace is encountered. |
Meta | This event fires when a meta section is encountered. |
Overwrite | Fired whenever a file exists and may be overwritten. |
PI | This event is fired when a processing instruction section is encountered. |
Progress | Fired as progress is made. |
SpecialSection | This event is fired when a special section is encountered. |
StartElement | This event is fired when a begin-element tag is encountered in the document. |
StartPrefixMapping | This event is fired when entering the scope of a namespace declaration. |
Config Settings
The following is a list of config settings for the class with short descriptions. Click on the links for further details.
NormalizePartName | Whether to normalize Part Names. |
RelationshipIsExternal[x] | Whether the relationship part is internal or external. |
BuildInfo | Information about the product's build. |
CodePage | The system code page used for Unicode to Multibyte translations. |
LicenseInfo | Information about the current license. |
MaskSensitiveData | Whether sensitive data is masked in log messages. |
ProcessIdleEvents | Whether the class uses its internal event loop to process events when the main thread is idle. |
SelectWaitMillis | The length of time in milliseconds the class will wait when DoEvents is called if there are no events to process. |
UseInternalSecurityAPI | Whether or not to use the system security libraries or an internal implementation. |
ContentTypes Property (OfficeDoc Class)
Collection of content type entries.
Syntax
IPWorksZipList<IPWorksZipContentType>* GetContentTypes();
int ipworkszip_officedoc_getcontenttypecount(void* lpObj);
int ipworkszip_officedoc_getcontenttypeisoverride(void* lpObj, int contenttypeindex);
char* ipworkszip_officedoc_getcontenttypemediatype(void* lpObj, int contenttypeindex);
char* ipworkszip_officedoc_getcontenttypetarget(void* lpObj, int contenttypeindex);
int GetContentTypeCount(); bool GetContentTypeIsOverride(int iContentTypeIndex); QString GetContentTypeMediaType(int iContentTypeIndex); QString GetContentTypeTarget(int iContentTypeIndex);
Remarks
Contains the default content types, as well as overrides for parts in the archive.
This property is read-only.
Data Type
Namespaces Property (OfficeDoc Class)
Collection of namespaces in the current namespace stack.
Syntax
IPWorksZipList<IPWorksZipXMLNamespace>* GetNamespaces();
int ipworkszip_officedoc_getnamespacecount(void* lpObj);
char* ipworkszip_officedoc_getnamespaceprefix(void* lpObj, int namespaceindex);
char* ipworkszip_officedoc_getnamespaceuri(void* lpObj, int namespaceindex);
int GetNamespaceCount(); QString GetNamespacePrefix(int iNamespaceIndex); QString GetNamespaceURI(int iNamespaceIndex);
Remarks
This property contains a collection of XML namespaces, which are standards for providing uniquely named elements and attributes in an XML instance.
This property is read-only and not available at design time.
Data Type
PackagePath Property (OfficeDoc Class)
The path to the Open XML package file.
Syntax
ANSI (Cross Platform) char* GetPackagePath();
int SetPackagePath(const char* lpszPackagePath); Unicode (Windows) LPWSTR GetPackagePath();
INT SetPackagePath(LPCWSTR lpszPackagePath);
char* ipworkszip_officedoc_getpackagepath(void* lpObj);
int ipworkszip_officedoc_setpackagepath(void* lpObj, const char* lpszPackagePath);
QString GetPackagePath();
int SetPackagePath(QString qsPackagePath);
Default Value
""
Remarks
This property specifies the path and filename of the Open XML package to work on.
Data Type
String
PackageProperties Property (OfficeDoc Class)
Collection of core/app/custom metadata properties associated with the archive.
Syntax
IPWorksZipList<IPWorksZipPackageProperty>* GetPackageProperties();
int ipworkszip_officedoc_getpackagepropertycount(void* lpObj);
char* ipworkszip_officedoc_getpackagepropertydatatype(void* lpObj, int packagepropertyindex);
char* ipworkszip_officedoc_getpackagepropertyname(void* lpObj, int packagepropertyindex);
char* ipworkszip_officedoc_getpackagepropertynamespace(void* lpObj, int packagepropertyindex);
char* ipworkszip_officedoc_getpackagepropertypropid(void* lpObj, int packagepropertyindex);
char* ipworkszip_officedoc_getpackagepropertypropset(void* lpObj, int packagepropertyindex);
char* ipworkszip_officedoc_getpackagepropertyvalue(void* lpObj, int packagepropertyindex);
int GetPackagePropertyCount(); QString GetPackagePropertyDataType(int iPackagePropertyIndex); QString GetPackagePropertyName(int iPackagePropertyIndex); QString GetPackagePropertyNamespace(int iPackagePropertyIndex); QString GetPackagePropertyPropId(int iPackagePropertyIndex); QString GetPackagePropertyPropSet(int iPackagePropertyIndex); QString GetPackagePropertyValue(int iPackagePropertyIndex);
Remarks
When the package is first opened using Open, the class looks for any metadata property files in the archive and will expose their contents through this collection.
This property is read-only.
Data Type
PartData Property (OfficeDoc Class)
The contents of the currently selected part.
Syntax
ANSI (Cross Platform) int GetPartData(char* &lpPartData, int &lenPartData);
int SetPartData(const char* lpPartData, int lenPartData); Unicode (Windows) INT GetPartData(LPSTR &lpPartData, INT &lenPartData);
INT SetPartData(LPCSTR lpPartData, INT lenPartData);
int ipworkszip_officedoc_getpartdata(void* lpObj, char** lpPartData, int* lenPartData);
int ipworkszip_officedoc_setpartdata(void* lpObj, const char* lpPartData, int lenPartData);
QByteArray GetPartData();
int SetPartData(QByteArray qbaPartData);
Default Value
""
Remarks
This property will hold the contents of the part selected by PartName after calling the ExtractPart method. It can also be set before calling ReplacePart.
Data Type
Binary String
PartName Property (OfficeDoc Class)
The name of the currently selected part.
Syntax
ANSI (Cross Platform) char* GetPartName();
int SetPartName(const char* lpszPartName); Unicode (Windows) LPWSTR GetPartName();
INT SetPartName(LPCWSTR lpszPartName);
char* ipworkszip_officedoc_getpartname(void* lpObj);
int ipworkszip_officedoc_setpartname(void* lpObj, const char* lpszPartName);
QString GetPartName();
int SetPartName(QString qsPartName);
Default Value
""
Remarks
This property specifies the name of the currently selected part in the document. If null or empty, no part is currently selected.
Data Type
String
Relationships Property (OfficeDoc Class)
Collection of Relationships in the current relationships (*.rels) file.
Syntax
IPWorksZipList<IPWorksZipRelationship>* GetRelationships();
int ipworkszip_officedoc_getrelationshipcount(void* lpObj);
char* ipworkszip_officedoc_getrelationshipcontenttype(void* lpObj, int relationshipindex);
char* ipworkszip_officedoc_getrelationshipid(void* lpObj, int relationshipindex);
char* ipworkszip_officedoc_getrelationshippartname(void* lpObj, int relationshipindex);
char* ipworkszip_officedoc_getrelationshiptypeuri(void* lpObj, int relationshipindex);
int GetRelationshipCount(); QString GetRelationshipContentType(int iRelationshipIndex); QString GetRelationshipId(int iRelationshipIndex); QString GetRelationshipPartName(int iRelationshipIndex); QString GetRelationshipTypeURI(int iRelationshipIndex);
Remarks
When the package is first opened using Open, the top-level relationships file (/rels/.rels) is parsed and this collection populated with its contents. The ReadRelationships method can be used to populate this collection with the contents of other, part-specific relationship files, as needed.
This property is read-only.
Data Type
Validate Property (OfficeDoc Class)
This property controls whether documents are validated during parsing.
Syntax
ANSI (Cross Platform) int GetValidate();
int SetValidate(int bValidate); Unicode (Windows) BOOL GetValidate();
INT SetValidate(BOOL bValidate);
int ipworkszip_officedoc_getvalidate(void* lpObj);
int ipworkszip_officedoc_setvalidate(void* lpObj, int bValidate);
bool GetValidate();
int SetValidate(bool bValidate);
Default Value
TRUE
Remarks
When true (default), the document will be validated during parsing. To disable validation set Validate to false. Disabling validation may be useful in cases in which data can still be parsed even if the document is not well formed.
Data Type
Boolean
XAttributes Property (OfficeDoc Class)
A collection of attributes of the current element.
Syntax
IPWorksZipList<IPWorksZipXMLAttribute>* GetXAttributes();
int ipworkszip_officedoc_getattrcount(void* lpObj);
char* ipworkszip_officedoc_getattrname(void* lpObj, int attrindex);
char* ipworkszip_officedoc_getattrnamespace(void* lpObj, int attrindex);
char* ipworkszip_officedoc_getattrprefix(void* lpObj, int attrindex);
char* ipworkszip_officedoc_getattrvalue(void* lpObj, int attrindex);
int GetAttrCount(); QString GetAttrName(int iAttrIndex); QString GetAttrNamespace(int iAttrIndex); QString GetAttrPrefix(int iAttrIndex); QString GetAttrValue(int iAttrIndex);
Remarks
This collection consists of all attributes of the current XML element. The component parses each attribute into a collection of XMLAttribute types.
This property is read-only and not available at design time.
Data Type
XChildren Property (OfficeDoc Class)
Collection of child elements of the current element.
Syntax
IPWorksZipList<IPWorksZipXMLElement>* GetXChildren();
int ipworkszip_officedoc_getxchildcount(void* lpObj);
char* ipworkszip_officedoc_getxchildname(void* lpObj, int xchildindex);
char* ipworkszip_officedoc_getxchildnamespace(void* lpObj, int xchildindex);
char* ipworkszip_officedoc_getxchildprefix(void* lpObj, int xchildindex);
char* ipworkszip_officedoc_getxchildxtext(void* lpObj, int xchildindex);
int GetXChildCount(); QString GetXChildName(int iXChildIndex); QString GetXChildNamespace(int iXChildIndex); QString GetXChildPrefix(int iXChildIndex); QString GetXChildXText(int iXChildIndex);
Remarks
The elements are provided in the collection in the same order they are found in the document.
This property is read-only and not available at design time.
Data Type
XElement Property (OfficeDoc Class)
The name of the current element.
Syntax
ANSI (Cross Platform) char* GetXElement(); Unicode (Windows) LPWSTR GetXElement();
char* ipworkszip_officedoc_getxelement(void* lpObj);
QString GetXElement();
Default Value
""
Remarks
The current element is specified via the XPath property.
This property is read-only.
Data Type
String
XNamespace Property (OfficeDoc Class)
The namespace of the current element.
Syntax
ANSI (Cross Platform) char* GetXNamespace(); Unicode (Windows) LPWSTR GetXNamespace();
char* ipworkszip_officedoc_getxnamespace(void* lpObj);
QString GetXNamespace();
Default Value
""
Remarks
The current element is specified via the XPath property.
This property is read-only.
Data Type
String
XParent Property (OfficeDoc Class)
This property includes the parent of the current element.
Syntax
ANSI (Cross Platform) char* GetXParent(); Unicode (Windows) LPWSTR GetXParent();
char* ipworkszip_officedoc_getxparent(void* lpObj);
QString GetXParent();
Default Value
""
Remarks
The current element is specified through the XPath property.
This property is read-only.
Data Type
String
XPath Property (OfficeDoc Class)
This property provides a way to point to a specific element in the document.
Syntax
ANSI (Cross Platform) char* GetXPath();
int SetXPath(const char* lpszXPath); Unicode (Windows) LPWSTR GetXPath();
INT SetXPath(LPCWSTR lpszXPath);
char* ipworkszip_officedoc_getxpath(void* lpObj);
int ipworkszip_officedoc_setxpath(void* lpObj, const char* lpszXPath);
QString GetXPath();
int SetXPath(QString qsXPath);
Default Value
""
Remarks
XPath implements a subset of the XML XPath specification, allowing you to point to specific elements in the XML documents.
The path is a series of one or more element accessors separated by '/'. The path can be absolute (starting with '/') or relative to the current XPath location.
The following are possible values for an element accessor:
'name' | A particular element name |
name[i] | The i-th subelement of the current element with the given name |
[i] | The i-th subelement of the current element |
[last()] | The last subelement of the current element |
[last()-i] | The subelement located at the last location minus i in the current element |
name[@attrname="attrvalue"] | The subelement containing a particular value for a given attribute (supports single AND double quotes) |
.. | The parent of the current element |
BuildDOM must be set to True before parsing the document for the XPath functionality to be available.
Example. Setting XPath:
Document root | XML.XPath = "/" |
Specific Element | XML.XPath = "/root/SubElement1/SubElement2/" |
i-th Child | XML.XPath = "/root/SubElement1[i]" |
Data Type
String
XPrefix Property (OfficeDoc Class)
The prefix of the current element.
Syntax
ANSI (Cross Platform) char* GetXPrefix(); Unicode (Windows) LPWSTR GetXPrefix();
char* ipworkszip_officedoc_getxprefix(void* lpObj);
QString GetXPrefix();
Default Value
""
Remarks
The current element is specified via the XPath property.
This property is read-only.
Data Type
String
XSubTree Property (OfficeDoc Class)
This property includes a snapshot of the current element in the document.
Syntax
ANSI (Cross Platform) char* GetXSubTree(); Unicode (Windows) LPWSTR GetXSubTree();
char* ipworkszip_officedoc_getxsubtree(void* lpObj);
QString GetXSubTree();
Default Value
""
Remarks
The current element is specified through the XPath property. For this property to work, you must set the CacheContent to True.
This property is read-only.
Data Type
String
XText Property (OfficeDoc Class)
The text of the current element.
Syntax
ANSI (Cross Platform) char* GetXText(); Unicode (Windows) LPWSTR GetXText();
char* ipworkszip_officedoc_getxtext(void* lpObj);
QString GetXText();
Default Value
""
Remarks
The current element is specified via the XPath property.
This property is read-only.
Data Type
String
Close Method (OfficeDoc Class)
Closes the Open XML package archive.
Syntax
ANSI (Cross Platform) int Close(); Unicode (Windows) INT Close();
int ipworkszip_officedoc_close(void* lpObj);
int Close();
Remarks
When this method is called, the class will close the current archive and release all resources.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
Config Method (OfficeDoc Class)
Sets or retrieves a configuration setting.
Syntax
ANSI (Cross Platform) char* Config(const char* lpszConfigurationString); Unicode (Windows) LPWSTR Config(LPCWSTR lpszConfigurationString);
char* ipworkszip_officedoc_config(void* lpObj, const char* lpszConfigurationString);
QString Config(const QString& qsConfigurationString);
Remarks
Config is a generic method available in every class. It is used to set and retrieve configuration settings for the class.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.
To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).
To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.
Error Handling (C++)
This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
ExtractPart Method (OfficeDoc Class)
Reads the contents of the currently selected part.
Syntax
ANSI (Cross Platform) int ExtractPart(); Unicode (Windows) INT ExtractPart();
int ipworkszip_officedoc_extractpart(void* lpObj);
int ExtractPart();
Remarks
If the part specified by the PartName property exists, the corresponding physical file will be extracted from the archive and will be available through the PartData property.
If the part doesn't exists, or it's stored in interleaved format, an error will be raised.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
FindPartByType Method (OfficeDoc Class)
Looks up a part in the current relationships file by it's type namespace URI.
Syntax
ANSI (Cross Platform) char* FindPartByType(const char* lpszTypeURI); Unicode (Windows) LPWSTR FindPartByType(LPCWSTR lpszTypeURI);
char* ipworkszip_officedoc_findpartbytype(void* lpObj, const char* lpszTypeURI);
QString FindPartByType(const QString& qsTypeURI);
Remarks
If a matching part can be found, it's part name is returned. Otherwise, an empty string is returned.
Error Handling (C++)
This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
GetPropertyValue Method (OfficeDoc Class)
Returns the value of the specified package property.
Syntax
ANSI (Cross Platform) char* GetPropertyValue(const char* lpszPropName, const char* lpszPropNamespace); Unicode (Windows) LPWSTR GetPropertyValue(LPCWSTR lpszPropName, LPCWSTR lpszPropNamespace);
char* ipworkszip_officedoc_getpropertyvalue(void* lpObj, const char* lpszPropName, const char* lpszPropNamespace);
QString GetPropertyValue(const QString& qsPropName, const QString& qsPropNamespace);
Remarks
Looks up a package property named PropName in namespace PropNamespace in the core and app properties tables and returns it's value, if found.
If the property doesn't exists, an empty string is returned.
For custom properties. use an empty string ("") as the value of the PropNamespace parameter.
Error Handling (C++)
This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
ListParts Method (OfficeDoc Class)
List all the parts contained in the document and their relationships.
Syntax
ANSI (Cross Platform) int ListParts(); Unicode (Windows) INT ListParts();
int ipworkszip_officedoc_listparts(void* lpObj);
int ListParts();
Remarks
When this method is called, the class will read all the relationships in the document, recursively, and populate the Relationships collection.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
Open Method (OfficeDoc Class)
Opens the Open XML package archive.
Syntax
ANSI (Cross Platform) int Open(); Unicode (Windows) INT Open();
int ipworkszip_officedoc_open(void* lpObj);
int Open();
Remarks
When this method is called, the class will attempt to open the archive specified in PackagePath and extract package properties, content types and parse the master relationships file in the archive.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ParsePart Method (OfficeDoc Class)
Parses the specified part as XML.
Syntax
ANSI (Cross Platform) int ParsePart(); Unicode (Windows) INT ParsePart();
int ipworkszip_officedoc_parsepart(void* lpObj);
int ParsePart();
Remarks
If the part specified by PartName exists, the corresponding physical file will be extracted from the archive and parsed as XML. If BuildDOM is enabled, the DOM will be built internally and you can use XPath to query the resulting document, using the XPath property. If BuildDOM is disabled, only the XML parser-related events will be fired.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ReadRelationships Method (OfficeDoc Class)
Reads the relationships file in the archive associated with the specified part.
Syntax
ANSI (Cross Platform) int ReadRelationships(); Unicode (Windows) INT ReadRelationships();
int ipworkszip_officedoc_readrelationships(void* lpObj);
int ReadRelationships();
Remarks
When this method is called, the class will look for a .rels file associated with the part specified by the PartName property. If found, the Relationships collection will now expose the contents of the relationships for that part.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ReplacePart Method (OfficeDoc Class)
Replaces the contents of the specified part in the package.
Syntax
ANSI (Cross Platform) int ReplacePart(); Unicode (Windows) INT ReplacePart();
int ipworkszip_officedoc_replacepart(void* lpObj);
int ReplacePart();
Remarks
If the part specified by the PartName property exists, the corresponding physical file will be replaced with the contents of the PartData property. The package file will be modified in place right away.
If the part doesn't exists, it's stored in interleaved format, or PartData is null or empty, an error will be raised.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
Reset Method (OfficeDoc Class)
Resets the class.
Syntax
ANSI (Cross Platform) int Reset(); Unicode (Windows) INT Reset();
int ipworkszip_officedoc_reset(void* lpObj);
int Reset();
Remarks
Reset resets the state of the class. All properties will be set to their default values, and any files open will be closed.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ResolveContentType Method (OfficeDoc Class)
Returns the content type of the specified part.
Syntax
ANSI (Cross Platform) char* ResolveContentType(); Unicode (Windows) LPWSTR ResolveContentType();
char* ipworkszip_officedoc_resolvecontenttype(void* lpObj);
QString ResolveContentType();
Remarks
Applies the content type resolution rules specified in the Open XML packaging specification and returns the content type associated with PartName in the archive.
If there's no content type mapped for the part or for the extension, an empty string is returned.
Error Handling (C++)
This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
BeginFile Event (OfficeDoc Class)
Fired before each file is processed.
Syntax
ANSI (Cross Platform) virtual int FireBeginFile(OfficeDocBeginFileEventParams *e);
typedef struct {
int Index;
int Skip; int reserved; } OfficeDocBeginFileEventParams;
Unicode (Windows) virtual INT FireBeginFile(OfficeDocBeginFileEventParams *e);
typedef struct {
INT Index;
BOOL Skip; INT reserved; } OfficeDocBeginFileEventParams;
#define EID_OFFICEDOC_BEGINFILE 1 virtual INT IPWORKSZIP_CALL FireBeginFile(INT &iIndex, BOOL &bSkip);
class OfficeDocBeginFileEventParams { public: int Index(); bool Skip(); void SetSkip(bool bSkip); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void BeginFile(OfficeDocBeginFileEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireBeginFile(OfficeDocBeginFileEventParams *e) {...}
Remarks
BeginFile is fired before each file is processed by the compressor or decompressor, as appropriate. Index contains the array index of the file about to be processed, and the CompressedName, DecompressedName, CompressedSize (decompression only), and DecompressedSize fields of the Files collection for this index contain more detailed information about the file about to be processed.
When extracting, an alternate location may be specified by trapping the event, and modifying DecompressedName and/or ExtractToPath. If DecompressedName is set to an empty string, the file will not be written to disk. If WriteToProgressEvent is true, the file will still be decompressed, and the data may be extracted through the Progress event.
This event may also be trapped while compressing. CompressedName and DecompressedName may be changed.
You may set the Skip parameter to true in order to skip the file completely while compressing or extracting.
Characters Event (OfficeDoc Class)
This event is fired for plaintext segments of the input stream.
Syntax
ANSI (Cross Platform) virtual int FireCharacters(OfficeDocCharactersEventParams *e);
typedef struct {
const char *Text; int reserved; } OfficeDocCharactersEventParams;
Unicode (Windows) virtual INT FireCharacters(OfficeDocCharactersEventParams *e);
typedef struct {
LPCWSTR Text; INT reserved; } OfficeDocCharactersEventParams;
#define EID_OFFICEDOC_CHARACTERS 2 virtual INT IPWORKSZIP_CALL FireCharacters(LPSTR &lpszText);
class OfficeDocCharactersEventParams { public: const QString &Text(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Characters(OfficeDocCharactersEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireCharacters(OfficeDocCharactersEventParams *e) {...}
Remarks
The Characters event provides the plaintext content of the XML document (i.e., the text inside the tags). The text is provided through the Text parameter.
The text includes white space as well as end-of-line characters, except for ignorable whitespace, which is fired through the IgnorableWhitespace event.
Comment Event (OfficeDoc Class)
This event is fired when a comment section is encountered.
Syntax
ANSI (Cross Platform) virtual int FireComment(OfficeDocCommentEventParams *e);
typedef struct {
const char *Text; int reserved; } OfficeDocCommentEventParams;
Unicode (Windows) virtual INT FireComment(OfficeDocCommentEventParams *e);
typedef struct {
LPCWSTR Text; INT reserved; } OfficeDocCommentEventParams;
#define EID_OFFICEDOC_COMMENT 3 virtual INT IPWORKSZIP_CALL FireComment(LPSTR &lpszText);
class OfficeDocCommentEventParams { public: const QString &Text(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Comment(OfficeDocCommentEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireComment(OfficeDocCommentEventParams *e) {...}
Remarks
The Comment event is fired whenever a comment section (<!-- ..text... -->) is found in the document.
The full text of the comment is provided by the Text parameter.
EndElement Event (OfficeDoc Class)
This event is fired when an end-element tag is encountered.
Syntax
ANSI (Cross Platform) virtual int FireEndElement(OfficeDocEndElementEventParams *e);
typedef struct {
const char *Namespace;
const char *Element;
const char *QName;
int IsEmpty; int reserved; } OfficeDocEndElementEventParams;
Unicode (Windows) virtual INT FireEndElement(OfficeDocEndElementEventParams *e);
typedef struct {
LPCWSTR Namespace;
LPCWSTR Element;
LPCWSTR QName;
BOOL IsEmpty; INT reserved; } OfficeDocEndElementEventParams;
#define EID_OFFICEDOC_ENDELEMENT 4 virtual INT IPWORKSZIP_CALL FireEndElement(LPSTR &lpszNamespace, LPSTR &lpszElement, LPSTR &lpszQName, BOOL &bIsEmpty);
class OfficeDocEndElementEventParams { public: const QString &Namespace(); const QString &Element(); const QString &QName(); bool IsEmpty(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void EndElement(OfficeDocEndElementEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireEndElement(OfficeDocEndElementEventParams *e) {...}
Remarks
The EndElement event is fired when an end-element tag is found in the document.
The element name is provided by the Element parameter.
The IsEmpty parameter is true when the event corresponds to an empty element declaration.
EndFile Event (OfficeDoc Class)
Fired after each file is processed.
Syntax
ANSI (Cross Platform) virtual int FireEndFile(OfficeDocEndFileEventParams *e);
typedef struct {
int Index; int reserved; } OfficeDocEndFileEventParams;
Unicode (Windows) virtual INT FireEndFile(OfficeDocEndFileEventParams *e);
typedef struct {
INT Index; INT reserved; } OfficeDocEndFileEventParams;
#define EID_OFFICEDOC_ENDFILE 5 virtual INT IPWORKSZIP_CALL FireEndFile(INT &iIndex);
class OfficeDocEndFileEventParams { public: int Index(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void EndFile(OfficeDocEndFileEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireEndFile(OfficeDocEndFileEventParams *e) {...}
Remarks
EndFile is fired after each file is processed by the compressor or decompressor, as appropriate. Index contains the array index of the file processed, and the CompressedName, DecompressedName, CompressedSize, and DecompressedSize fields in the Files collection for this index contain more detailed information about the file processed.
EndPrefixMapping Event (OfficeDoc Class)
This event is fired when leaving the scope of a namespace declaration.
Syntax
ANSI (Cross Platform) virtual int FireEndPrefixMapping(OfficeDocEndPrefixMappingEventParams *e);
typedef struct {
const char *Prefix; int reserved; } OfficeDocEndPrefixMappingEventParams;
Unicode (Windows) virtual INT FireEndPrefixMapping(OfficeDocEndPrefixMappingEventParams *e);
typedef struct {
LPCWSTR Prefix; INT reserved; } OfficeDocEndPrefixMappingEventParams;
#define EID_OFFICEDOC_ENDPREFIXMAPPING 6 virtual INT IPWORKSZIP_CALL FireEndPrefixMapping(LPSTR &lpszPrefix);
class OfficeDocEndPrefixMappingEventParams { public: const QString &Prefix(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void EndPrefixMapping(OfficeDocEndPrefixMappingEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireEndPrefixMapping(OfficeDocEndPrefixMappingEventParams *e) {...}
Remarks
The StartPrefixMapping event is fired when entering the scope of a namespace declaration.
Error Event (OfficeDoc Class)
Fired when information is available about errors during data delivery.
Syntax
ANSI (Cross Platform) virtual int FireError(OfficeDocErrorEventParams *e);
typedef struct {
int ErrorCode;
const char *Description; int reserved; } OfficeDocErrorEventParams;
Unicode (Windows) virtual INT FireError(OfficeDocErrorEventParams *e);
typedef struct {
INT ErrorCode;
LPCWSTR Description; INT reserved; } OfficeDocErrorEventParams;
#define EID_OFFICEDOC_ERROR 7 virtual INT IPWORKSZIP_CALL FireError(INT &iErrorCode, LPSTR &lpszDescription);
class OfficeDocErrorEventParams { public: int ErrorCode(); const QString &Description(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Error(OfficeDocErrorEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireError(OfficeDocErrorEventParams *e) {...}
Remarks
The Error event is fired in case of exceptional conditions during message processing. Normally the class fails with an error.
The ErrorCode parameter contains an error code, and the Description parameter contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.
EvalEntity Event (OfficeDoc Class)
This event is fired every time an entity needs to be evaluated.
Syntax
ANSI (Cross Platform) virtual int FireEvalEntity(OfficeDocEvalEntityEventParams *e);
typedef struct {
const char *Entity;
char *Value; int reserved; } OfficeDocEvalEntityEventParams;
Unicode (Windows) virtual INT FireEvalEntity(OfficeDocEvalEntityEventParams *e);
typedef struct {
LPCWSTR Entity;
LPWSTR Value; INT reserved; } OfficeDocEvalEntityEventParams;
#define EID_OFFICEDOC_EVALENTITY 8 virtual INT IPWORKSZIP_CALL FireEvalEntity(LPSTR &lpszEntity, LPSTR &lpszValue);
class OfficeDocEvalEntityEventParams { public: const QString &Entity(); const QString &Value(); void SetValue(const QString &qsValue); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void EvalEntity(OfficeDocEvalEntityEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireEvalEntity(OfficeDocEvalEntityEventParams *e) {...}
Remarks
The Value parameter contains a suggested value for the entity (normally the entity name itself). You may set Value to a value of your choice, which will be later passed into the text stream.
IgnorableWhitespace Event (OfficeDoc Class)
This event is fired when a section of ignorable whitespace is encountered.
Syntax
ANSI (Cross Platform) virtual int FireIgnorableWhitespace(OfficeDocIgnorableWhitespaceEventParams *e);
typedef struct {
const char *Text; int reserved; } OfficeDocIgnorableWhitespaceEventParams;
Unicode (Windows) virtual INT FireIgnorableWhitespace(OfficeDocIgnorableWhitespaceEventParams *e);
typedef struct {
LPCWSTR Text; INT reserved; } OfficeDocIgnorableWhitespaceEventParams;
#define EID_OFFICEDOC_IGNORABLEWHITESPACE 9 virtual INT IPWORKSZIP_CALL FireIgnorableWhitespace(LPSTR &lpszText);
class OfficeDocIgnorableWhitespaceEventParams { public: const QString &Text(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void IgnorableWhitespace(OfficeDocIgnorableWhitespaceEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireIgnorableWhitespace(OfficeDocIgnorableWhitespaceEventParams *e) {...}
Remarks
The ignorable whitespace section is provided by the Text parameter.
Meta Event (OfficeDoc Class)
This event fires when a meta section is encountered.
Syntax
ANSI (Cross Platform) virtual int FireMeta(OfficeDocMetaEventParams *e);
typedef struct {
const char *Text; int reserved; } OfficeDocMetaEventParams;
Unicode (Windows) virtual INT FireMeta(OfficeDocMetaEventParams *e);
typedef struct {
LPCWSTR Text; INT reserved; } OfficeDocMetaEventParams;
#define EID_OFFICEDOC_META 10 virtual INT IPWORKSZIP_CALL FireMeta(LPSTR &lpszText);
class OfficeDocMetaEventParams { public: const QString &Text(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Meta(OfficeDocMetaEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireMeta(OfficeDocMetaEventParams *e) {...}
Remarks
The Meta event is fired whenever a meta information section (<! ..text... >) is found in the document.
The full text of the meta section is provided by the Text parameter.
Overwrite Event (OfficeDoc Class)
Fired whenever a file exists and may be overwritten.
Syntax
ANSI (Cross Platform) virtual int FireOverwrite(OfficeDocOverwriteEventParams *e);
typedef struct {
char *Filename;
int Overwrite; int reserved; } OfficeDocOverwriteEventParams;
Unicode (Windows) virtual INT FireOverwrite(OfficeDocOverwriteEventParams *e);
typedef struct {
LPWSTR Filename;
BOOL Overwrite; INT reserved; } OfficeDocOverwriteEventParams;
#define EID_OFFICEDOC_OVERWRITE 11 virtual INT IPWORKSZIP_CALL FireOverwrite(LPSTR &lpszFilename, BOOL &bOverwrite);
class OfficeDocOverwriteEventParams { public: const QString &Filename(); void SetFilename(const QString &qsFilename); bool Overwrite(); void SetOverwrite(bool bOverwrite); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Overwrite(OfficeDocOverwriteEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireOverwrite(OfficeDocOverwriteEventParams *e) {...}
Remarks
Overwrite is fired when a file is about to be overwritten, and would overwrite an existing file. The event is fired during decompression.
Filename contains the full name of the file, specified with its pathname.
Overwrite specifies whether or not the file will be overwritten. For Zip, Jar, and Tar, this is equal by default to the value of the OverwriteFiles property. For Gzip, this value defaults to true.
Either of the parameters may be changed when the event is fired. Changing the value of Overwrite will override the default behavior of the class, and cause the file to be overwritten or not overwritten, depending on the value set. If Filename is changed, the value of Overwrite will be ignored, and the file will be written with the specified name. If a file of the new name also exists this file will be silently overwritten.
PI Event (OfficeDoc Class)
This event is fired when a processing instruction section is encountered.
Syntax
ANSI (Cross Platform) virtual int FirePI(OfficeDocPIEventParams *e);
typedef struct {
const char *Text; int reserved; } OfficeDocPIEventParams;
Unicode (Windows) virtual INT FirePI(OfficeDocPIEventParams *e);
typedef struct {
LPCWSTR Text; INT reserved; } OfficeDocPIEventParams;
#define EID_OFFICEDOC_PI 12 virtual INT IPWORKSZIP_CALL FirePI(LPSTR &lpszText);
class OfficeDocPIEventParams { public: const QString &Text(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void PI(OfficeDocPIEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FirePI(OfficeDocPIEventParams *e) {...}
Remarks
The PI event is fired whenever a processing instruction section (<? ..text... ?>) is found in the document.
The full text of the processing instruction is provided by the Text parameter.
Progress Event (OfficeDoc Class)
Fired as progress is made.
Syntax
ANSI (Cross Platform) virtual int FireProgress(OfficeDocProgressEventParams *e);
typedef struct {
const char *Data; int lenData;
const char *Filename;
int64 BytesProcessed;
int PercentProcessed; int reserved; } OfficeDocProgressEventParams;
Unicode (Windows) virtual INT FireProgress(OfficeDocProgressEventParams *e);
typedef struct {
LPCSTR Data; INT lenData;
LPCWSTR Filename;
LONG64 BytesProcessed;
INT PercentProcessed; INT reserved; } OfficeDocProgressEventParams;
#define EID_OFFICEDOC_PROGRESS 13 virtual INT IPWORKSZIP_CALL FireProgress(LPSTR &lpData, INT &lenData, LPSTR &lpszFilename, LONG64 &lBytesProcessed, INT &iPercentProcessed);
class OfficeDocProgressEventParams { public: const QByteArray &Data(); const QString &Filename(); qint64 BytesProcessed(); int PercentProcessed(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Progress(OfficeDocProgressEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireProgress(OfficeDocProgressEventParams *e) {...}
Remarks
The Progress event is automatically fired as compression or decompression is performed. When WriteToProgressEvent is true, the output data is provided through the Data parameter, allowing for it to be streamed out.
Filename contains the name of the file being written. If no file is being written, Filename will contain an empty string, and the output data will be provided exclusively through this event.
BytesProcessed contains the total number of uncompressed bytes processed. PercentProcessed contains the percent of uncompressed bytes processed, corresponding roughly to the running time of the operation.
For Gzip extraction only, BytesProcessed and PercentProcessed will reflect the number of compressed bytes extracted, as it is generally impossible to predetermine the total uncompressed size.
If WriteToProgressEvent is false, Data will contain null.
SpecialSection Event (OfficeDoc Class)
This event is fired when a special section is encountered.
Syntax
ANSI (Cross Platform) virtual int FireSpecialSection(OfficeDocSpecialSectionEventParams *e);
typedef struct {
const char *SectionId;
const char *Text; int reserved; } OfficeDocSpecialSectionEventParams;
Unicode (Windows) virtual INT FireSpecialSection(OfficeDocSpecialSectionEventParams *e);
typedef struct {
LPCWSTR SectionId;
LPCWSTR Text; INT reserved; } OfficeDocSpecialSectionEventParams;
#define EID_OFFICEDOC_SPECIALSECTION 14 virtual INT IPWORKSZIP_CALL FireSpecialSection(LPSTR &lpszSectionId, LPSTR &lpszText);
class OfficeDocSpecialSectionEventParams { public: const QString &SectionId(); const QString &Text(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void SpecialSection(OfficeDocSpecialSectionEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireSpecialSection(OfficeDocSpecialSectionEventParams *e) {...}
Remarks
The SpecialSection event is fired whenever a special section (such as <![ CDATA [ ..text... ]]>) is found in the document.
The full text of the special section is provided by the Text parameter, and the SectionId parameter provides the section identifier (e.g., CDATA).
StartElement Event (OfficeDoc Class)
This event is fired when a begin-element tag is encountered in the document.
Syntax
ANSI (Cross Platform) virtual int FireStartElement(OfficeDocStartElementEventParams *e);
typedef struct {
const char *Namespace;
const char *Element;
const char *QName;
int IsEmpty; int reserved; } OfficeDocStartElementEventParams;
Unicode (Windows) virtual INT FireStartElement(OfficeDocStartElementEventParams *e);
typedef struct {
LPCWSTR Namespace;
LPCWSTR Element;
LPCWSTR QName;
BOOL IsEmpty; INT reserved; } OfficeDocStartElementEventParams;
#define EID_OFFICEDOC_STARTELEMENT 15 virtual INT IPWORKSZIP_CALL FireStartElement(LPSTR &lpszNamespace, LPSTR &lpszElement, LPSTR &lpszQName, BOOL &bIsEmpty);
class OfficeDocStartElementEventParams { public: const QString &Namespace(); const QString &Element(); const QString &QName(); bool IsEmpty(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void StartElement(OfficeDocStartElementEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireStartElement(OfficeDocStartElementEventParams *e) {...}
Remarks
The StartElement event is fired when a begin-element tag is found in the document.
The element name is provided through the Element parameter. The attribute names and values (if any) are provided through the Name, Namespace, Prefix, and Value properties.
The IsEmpty parameter is True when the event corresponds to an empty element declaration.
StartPrefixMapping Event (OfficeDoc Class)
This event is fired when entering the scope of a namespace declaration.
Syntax
ANSI (Cross Platform) virtual int FireStartPrefixMapping(OfficeDocStartPrefixMappingEventParams *e);
typedef struct {
const char *Prefix;
const char *URI; int reserved; } OfficeDocStartPrefixMappingEventParams;
Unicode (Windows) virtual INT FireStartPrefixMapping(OfficeDocStartPrefixMappingEventParams *e);
typedef struct {
LPCWSTR Prefix;
LPCWSTR URI; INT reserved; } OfficeDocStartPrefixMappingEventParams;
#define EID_OFFICEDOC_STARTPREFIXMAPPING 16 virtual INT IPWORKSZIP_CALL FireStartPrefixMapping(LPSTR &lpszPrefix, LPSTR &lpszURI);
class OfficeDocStartPrefixMappingEventParams { public: const QString &Prefix(); const QString &URI(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void StartPrefixMapping(OfficeDocStartPrefixMappingEventParams *e);
// Or, subclass OfficeDoc and override this emitter function. virtual int FireStartPrefixMapping(OfficeDocStartPrefixMappingEventParams *e) {...}
Remarks
The EndPrefixMapping event is fired when leaving the scope of a namespace declaration.
ContentType Type
The Content Type entry as defined in the package.
Syntax
IPWorksZipContentType (declared in ipworkszip.h)
Remarks
The content type represents an entry in the [Content_Types].xml file in the archive. It can either represent a default type associated with an extension, or an override specific to a given part in the archive.
Fields
IsOverride
int (read-only)
Default Value: TRUE
Specifies if this is a default content type or an override.
MediaType
char* (read-only)
Default Value: ""
The media type for this entry, as defined by RFC2616.
Target
char* (read-only)
Default Value: ""
If it's a default content type, this will be the file extension it applies to. Otherwise, it will be the part name.
Constructors
ContentType()
PackageProperty Type
A core/app/custom metadata property attached to the package.
Syntax
IPWorksZipPackageProperty (declared in ipworkszip.h)
Remarks
A property is an entry in one of the package's property files.
All the properties, including core Open XML properties, application-specific properties and custom properties are represented here using the same structure.
Fields
DataType
char* (read-only)
Default Value: ""
The data type associated with this property, if the information is available.
Name
char* (read-only)
Default Value: ""
The name of this property
Namespace
char* (read-only)
Default Value: ""
The XML Namespace URI associated with this property. For custom properties, this will be an empty string.
PropId
char* (read-only)
Default Value: ""
If this is a custom property, this will be the pid assigned to it.
PropSet
char* (read-only)
Default Value: ""
If this is a custom property, this will be the GUID of the property set it belongs to.
Value
char* (read-only)
Default Value: ""
The value of this property
Constructors
PackageProperty()
Relationship Type
A relationship entry in a .rels file in the archive.
Syntax
IPWorksZipRelationship (declared in ipworkszip.h)
Remarks
A relationship represents a reference to another part within the archive.
A relationship entry specifies a part name, the type of relationship (what it means) and a unique Id for this relation in the currently selected relationship file.
Fields
ContentType
char* (read-only)
Default Value: ""
The content type for the part referenced by this relationship, resolved from [Content_Types].xml according to the Open XML packaging specification rules.
Id
char* (read-only)
Default Value: ""
The unique ID of this relationship within this .rels file
PartName
char* (read-only)
Default Value: ""
The name of the part this relationship entry applies to.
TypeURI
char* (read-only)
Default Value: ""
The XML namespace URI that specifies the meaning of this relationship.
Constructors
Relationship()
XMLAttribute Type
This type describes an XML attribute from the current XML element.
Syntax
IPWorksZipXMLAttribute (declared in ipworkszip.h)
Remarks
This type describes an XML attribute from the current element. It includes fields to denote information about the attribute being defined.
Fields
Name
char* (read-only)
Default Value: ""
The Name provides the local name (without prefix) of the attribute.
Namespace
char* (read-only)
Default Value: ""
This field contains the attribute namespace.
Prefix
char* (read-only)
Default Value: ""
This field contains the attribute prefix (if any). If the attribute does not have a prefix, this property is empty.
Value
char* (read-only)
Default Value: ""
This field contains the attribute value.
Constructors
XMLAttribute()
XMLElement Type
This type describes an element contained within the XML document.
Syntax
IPWorksZipXMLElement (declared in ipworkszip.h)
Remarks
This type describes an XML element. The fields for this type describe the element Name, Prefix, and Namespace of the given element.
The elements are inserted into the array in the same order they are found in the document.
Fields
Name
char* (read-only)
Default Value: ""
The Name field provides the local name (without a prefix) of the element.
Namespace
char* (read-only)
Default Value: ""
This field contains the namespace of the element.
Prefix
char* (read-only)
Default Value: ""
This field contains the prefix of the element (if any). If the element does not have a prefix, this property is empty.
XText
char* (read-only)
Default Value: ""
This field contains the inner text of the element.
Constructors
XMLElement()
XMLNamespace Type
This type describes an XML namespace from the current namespace stack.
Syntax
IPWorksZipXMLNamespace (declared in ipworkszip.h)
Remarks
This type describes an XML namespace from the current stack. It includes fields to denote the Prefix and the URI of the namespace being defined.
The default namespace exists at index 0. The Prefix field at index 0 is xmlns, and the Name field contains the default namespace.
Fields
Prefix
char*
Default Value: ""
URI
char*
Default Value: ""
This field contains the namespace URI associated with the corresponding Prefix. This URL is usually pointing to the XML schema for the namespace.
Constructors
XMLNamespace()
XMLNamespace(const char* lpszURI, const char* lpszPrefix)
IPWorksZipList Type
Syntax
IPWorksZipList<T> (declared in ipworkszip.h)
Remarks
IPWorksZipList is a generic class that is used to hold a collection of objects of type T, where T is one of the custom types supported by the OfficeDoc class.
Methods | |
GetCount |
This method returns the current size of the collection.
int GetCount() {}
|
SetCount |
This method sets the size of the collection. This method returns 0 if setting the size was successful; or -1 if the collection is ReadOnly. When adding additional objects to a collection call this method to specify the new size. Increasing the size of the collection preserves existing objects in the collection.
int SetCount(int count) {}
|
Get |
This method gets the item at the specified position. The index parameter specifies the index of the item in the collection. This method returns NULL if an invalid index is specified.
T* Get(int index) {}
|
Set |
This method sets the item at the specified position. The index parameter specifies the index of the item in the collection that is being set. This method returns -1 if an invalid index is specified. Note: Objects created using the new operator must be freed using the delete operator; they will not be automatically freed by the class.
T* Set(int index, T* value) {}
|
Config Settings (OfficeDoc Class)
The class accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.OfficeDoc Config Settings
/ppt/slides/../media/image1.jpeg
When this option is set to True the component will automatically normalize
these Part Names so that they can be directly used in the PartName property
for retrieving the part. For example, the above would become:
/ppt/media/image1.jpeg
The default is True.
Base Config Settings
The following is a list of valid code page identifiers:
Identifier | Name |
037 | IBM EBCDIC - U.S./Canada |
437 | OEM - United States |
500 | IBM EBCDIC - International |
708 | Arabic - ASMO 708 |
709 | Arabic - ASMO 449+, BCON V4 |
710 | Arabic - Transparent Arabic |
720 | Arabic - Transparent ASMO |
737 | OEM - Greek (formerly 437G) |
775 | OEM - Baltic |
850 | OEM - Multilingual Latin I |
852 | OEM - Latin II |
855 | OEM - Cyrillic (primarily Russian) |
857 | OEM - Turkish |
858 | OEM - Multilingual Latin I + Euro symbol |
860 | OEM - Portuguese |
861 | OEM - Icelandic |
862 | OEM - Hebrew |
863 | OEM - Canadian-French |
864 | OEM - Arabic |
865 | OEM - Nordic |
866 | OEM - Russian |
869 | OEM - Modern Greek |
870 | IBM EBCDIC - Multilingual/ROECE (Latin-2) |
874 | ANSI/OEM - Thai (same as 28605, ISO 8859-15) |
875 | IBM EBCDIC - Modern Greek |
932 | ANSI/OEM - Japanese, Shift-JIS |
936 | ANSI/OEM - Simplified Chinese (PRC, Singapore) |
949 | ANSI/OEM - Korean (Unified Hangul Code) |
950 | ANSI/OEM - Traditional Chinese (Taiwan; Hong Kong SAR, PRC) |
1026 | IBM EBCDIC - Turkish (Latin-5) |
1047 | IBM EBCDIC - Latin 1/Open System |
1140 | IBM EBCDIC - U.S./Canada (037 + Euro symbol) |
1141 | IBM EBCDIC - Germany (20273 + Euro symbol) |
1142 | IBM EBCDIC - Denmark/Norway (20277 + Euro symbol) |
1143 | IBM EBCDIC - Finland/Sweden (20278 + Euro symbol) |
1144 | IBM EBCDIC - Italy (20280 + Euro symbol) |
1145 | IBM EBCDIC - Latin America/Spain (20284 + Euro symbol) |
1146 | IBM EBCDIC - United Kingdom (20285 + Euro symbol) |
1147 | IBM EBCDIC - France (20297 + Euro symbol) |
1148 | IBM EBCDIC - International (500 + Euro symbol) |
1149 | IBM EBCDIC - Icelandic (20871 + Euro symbol) |
1200 | Unicode UCS-2 Little-Endian (BMP of ISO 10646) |
1201 | Unicode UCS-2 Big-Endian |
1250 | ANSI - Central European |
1251 | ANSI - Cyrillic |
1252 | ANSI - Latin I |
1253 | ANSI - Greek |
1254 | ANSI - Turkish |
1255 | ANSI - Hebrew |
1256 | ANSI - Arabic |
1257 | ANSI - Baltic |
1258 | ANSI/OEM - Vietnamese |
1361 | Korean (Johab) |
10000 | MAC - Roman |
10001 | MAC - Japanese |
10002 | MAC - Traditional Chinese (Big5) |
10003 | MAC - Korean |
10004 | MAC - Arabic |
10005 | MAC - Hebrew |
10006 | MAC - Greek I |
10007 | MAC - Cyrillic |
10008 | MAC - Simplified Chinese (GB 2312) |
10010 | MAC - Romania |
10017 | MAC - Ukraine |
10021 | MAC - Thai |
10029 | MAC - Latin II |
10079 | MAC - Icelandic |
10081 | MAC - Turkish |
10082 | MAC - Croatia |
12000 | Unicode UCS-4 Little-Endian |
12001 | Unicode UCS-4 Big-Endian |
20000 | CNS - Taiwan |
20001 | TCA - Taiwan |
20002 | Eten - Taiwan |
20003 | IBM5550 - Taiwan |
20004 | TeleText - Taiwan |
20005 | Wang - Taiwan |
20105 | IA5 IRV International Alphabet No. 5 (7-bit) |
20106 | IA5 German (7-bit) |
20107 | IA5 Swedish (7-bit) |
20108 | IA5 Norwegian (7-bit) |
20127 | US-ASCII (7-bit) |
20261 | T.61 |
20269 | ISO 6937 Non-Spacing Accent |
20273 | IBM EBCDIC - Germany |
20277 | IBM EBCDIC - Denmark/Norway |
20278 | IBM EBCDIC - Finland/Sweden |
20280 | IBM EBCDIC - Italy |
20284 | IBM EBCDIC - Latin America/Spain |
20285 | IBM EBCDIC - United Kingdom |
20290 | IBM EBCDIC - Japanese Katakana Extended |
20297 | IBM EBCDIC - France |
20420 | IBM EBCDIC - Arabic |
20423 | IBM EBCDIC - Greek |
20424 | IBM EBCDIC - Hebrew |
20833 | IBM EBCDIC - Korean Extended |
20838 | IBM EBCDIC - Thai |
20866 | Russian - KOI8-R |
20871 | IBM EBCDIC - Icelandic |
20880 | IBM EBCDIC - Cyrillic (Russian) |
20905 | IBM EBCDIC - Turkish |
20924 | IBM EBCDIC - Latin-1/Open System (1047 + Euro symbol) |
20932 | JIS X 0208-1990 & 0121-1990 |
20936 | Simplified Chinese (GB2312) |
21025 | IBM EBCDIC - Cyrillic (Serbian, Bulgarian) |
21027 | Extended Alpha Lowercase |
21866 | Ukrainian (KOI8-U) |
28591 | ISO 8859-1 Latin I |
28592 | ISO 8859-2 Central Europe |
28593 | ISO 8859-3 Latin 3 |
28594 | ISO 8859-4 Baltic |
28595 | ISO 8859-5 Cyrillic |
28596 | ISO 8859-6 Arabic |
28597 | ISO 8859-7 Greek |
28598 | ISO 8859-8 Hebrew |
28599 | ISO 8859-9 Latin 5 |
28605 | ISO 8859-15 Latin 9 |
29001 | Europa 3 |
38598 | ISO 8859-8 Hebrew |
50220 | ISO 2022 Japanese with no halfwidth Katakana |
50221 | ISO 2022 Japanese with halfwidth Katakana |
50222 | ISO 2022 Japanese JIS X 0201-1989 |
50225 | ISO 2022 Korean |
50227 | ISO 2022 Simplified Chinese |
50229 | ISO 2022 Traditional Chinese |
50930 | Japanese (Katakana) Extended |
50931 | US/Canada and Japanese |
50933 | Korean Extended and Korean |
50935 | Simplified Chinese Extended and Simplified Chinese |
50936 | Simplified Chinese |
50937 | US/Canada and Traditional Chinese |
50939 | Japanese (Latin) Extended and Japanese |
51932 | EUC - Japanese |
51936 | EUC - Simplified Chinese |
51949 | EUC - Korean |
51950 | EUC - Traditional Chinese |
52936 | HZ-GB2312 Simplified Chinese |
54936 | Windows XP: GB18030 Simplified Chinese (4 Byte) |
57002 | ISCII Devanagari |
57003 | ISCII Bengali |
57004 | ISCII Tamil |
57005 | ISCII Telugu |
57006 | ISCII Assamese |
57007 | ISCII Oriya |
57008 | ISCII Kannada |
57009 | ISCII Malayalam |
57010 | ISCII Gujarati |
57011 | ISCII Punjabi |
65000 | Unicode UTF-7 |
65001 | Unicode UTF-8 |
Identifier | Name |
1 | ASCII |
2 | NEXTSTEP |
3 | JapaneseEUC |
4 | UTF8 |
5 | ISOLatin1 |
6 | Symbol |
7 | NonLossyASCII |
8 | ShiftJIS |
9 | ISOLatin2 |
10 | Unicode |
11 | WindowsCP1251 |
12 | WindowsCP1252 |
13 | WindowsCP1253 |
14 | WindowsCP1254 |
15 | WindowsCP1250 |
21 | ISO2022JP |
30 | MacOSRoman |
10 | UTF16String |
0x90000100 | UTF16BigEndian |
0x94000100 | UTF16LittleEndian |
0x8c000100 | UTF32String |
0x98000100 | UTF32BigEndian |
0x9c000100 | UTF32LittleEndian |
65536 | Proprietary |
- Product: The product the license is for.
- Product Key: The key the license was generated from.
- License Source: Where the license was found (e.g., RuntimeLicense, License File).
- License Type: The type of license installed (e.g., Royalty Free, Single Server).
- Last Valid Build: The last valid build number for which the license will work.
This setting only works on these classes: AS3Receiver, AS3Sender, Atom, Client(3DS), FTP, FTPServer, IMAP, OFTPClient, SSHClient, SCP, Server(3DS), Sexec, SFTP, SFTPServer, SSHServer, TCPClient, TCPServer.
Setting this configuration setting to true tells the class to use the internal implementation instead of using the system security libraries.
On Windows, this setting is set to false by default. On Linux/macOS, this setting is set to true by default.
To use the system security libraries for Linux, OpenSSL support must be enabled. For more information on how to enable OpenSSL, please refer to the OpenSSL Notes section.
Trappable Errors (OfficeDoc Class)
Error Handling (C++)
Call the GetLastErrorCode() method to obtain the last called method's result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. Known error codes are listed below. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
ErrorsThe following errors may be generated by the class. Note that frequently the error message will contain more specific information than what is listed here.
Note that some non-fatal errors may be trapped and explicitly ignored in the Error event. This will allow the class to continue operation even in case of error.
OfficeDoc Errors
268 | The specified part name could not be found on the package, or the part is stored in interleaved format. |