#include <IXMLExportSessionOptions.h>
|
| enum | { kDefaultIID = IID_IXMLEXPORTSESSIONOPTIONS } |
| |
Interface storing XML export options. Mutate the options stored on the session workspace t through the command kChangeXMLExportSOptionsCmdBoss rather than directly on the interface on the session workspace.
Mutate contents of this interface by copying state from another
- Parameters
| otherOptions | specifies other interface whose state we'll copy from |
| virtual bool16 IXMLExportSessionOptions::GetViewAfterExport | ( | | ) | const |
| pure virtual |
Accessor for property specifying whether to view after exporting
- Returns
- bool16 specifying whether end-user wants to view exported XML-based content
| virtual const IDFile& IXMLExportSessionOptions::GetXMLPreferredBrowser | ( | void | | ) | |
| pure virtual |
Accessor for viewer that is current user default
NOTE: This is a reference to internal data. Be sure to not let this interface go out of scope before you are done using the IDFile
- Returns
- IDFile giving path to exec browser
| virtual const IDFile& IXMLExportSessionOptions::GetXMLUserDefinedBrowser | ( | int32 | indx | ) | |
| pure virtual |
Accessor for viewer set by end-user
NOTE: This is a reference to internal data. Be sure to not let this interface go out of scope before you are done using the IDFile
- Parameters
| indx | specifies index in browser-list of interest |
- Returns
- IDFile giving path to exec user defined XML viewer
| virtual void IXMLExportSessionOptions::SetViewAfterExport | ( | bool16 | viewAfterExport | ) | |
| pure virtual |
Mutator for property specifying whether to view after exporting
- Parameters
| viewAfterExport | kTrue if should view after export, kFalse otherwise |
| virtual void IXMLExportSessionOptions::SetXMLPreferredBrowser | ( | const IDFile & | pBrowser | ) | |
| pure virtual |
Mutator for viewer that's user's current default
- Parameters
| pBrowser | specifies new browser to set as preferred by end-user |
| virtual void IXMLExportSessionOptions::SetXMLUserDefinedBrowser | ( | int32 | indx, | | | const IDFile & | pBrowser | | ) | | |
| pure virtual |
Mutator for viewer set by end-user
- Parameters
| indx | location to add this browser in list stored |
| pBrowser | specifies new browser to store on this interface |