This interface for AMDocument objects is used to manage document type workflow. Document workflow functionality is only available when Work Isolation Mode has been disabled. This interface applies to the predefined workflow states and transitions available with document types. For workflow definitions, the IAMDocumentConfigurableWorkflow interface should be used.
Name | Description |
---|---|
Moves document to the next workflow state |
|
The last line added to the document log |
|
Reserved. See “About reserved objects, methods, and properties.” |
|
Reserved. See “About reserved objects, methods, and properties.” |
|
The content of the document log |
|
The name of the current workflow manager |
|
Returns a combination of DWF_STATES constants for the states to which the user can move the document |
|
Reserved. See “About reserved objects, methods, and properties.” |
|
The current workflow state. See DWF_STATES constants. |
|
A description of the current workflow state |
|
A description of the action associated with the current workflow state |
|
Name | Description |
---|---|
Releases the document from workflow |
Remarks
This interface is implemented by the AMDocument object.
Example
Public Sub AddTextToDocumentLog(doc As AMDocument, Text As String)
Dim wf As IAMDocumentWorkFlow3
Set wf = doc
wf.AddToLog Text
End Sub