PackagingAction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Identifies the types of events that occur during the serialization of a package.
public enum class PackagingAction
public enum PackagingAction
type PackagingAction =
Public Enum PackagingAction
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | No action has been taken. |
AddingDocumentSequence | 1 | A document sequence is being added. |
DocumentSequenceCompleted | 2 | A document sequence has been added, but not necessarily committed. |
AddingFixedDocument | 3 | A document is being added. |
FixedDocumentCompleted | 4 | A document has been added, but not necessarily committed. |
AddingFixedPage | 5 | A page is being added. |
FixedPageCompleted | 6 | A page has been added, but not necessarily committed. |
ResourceAdded | 7 | A resource has been added, but not necessarily committed. |
FontAdded | 8 | A font has been added, but not necessarily committed. |
ImageAdded | 9 | An image has been added, but not necessarily committed. |
XpsDocumentCommitted | 10 | The document is committed. |
Remarks
Use this enumeration as the value of the PackagingProgressEventArgs.Action property.