SOLIDWORKS PDM Professional API Help Send Feedback
EdmTaskFlag Enumeration
See Also  
EPDM.Interop.epdm Namespace : EdmTaskFlag Enumeration


Task add-in flags used in IEdmTaskProperties::TaskFlags and EdmTaskInfo. Bitmask.

Syntax

Visual Basic 
Public Enum EdmTaskFlag 
   Inherits System.Enum
C# 
public enum EdmTaskFlag : System.Enum 
C++/CLI 
public enum class EdmTaskFlag : public System.Enum 

Members

MemberDescription
EdmTask_Nothing0 = None of the other flags
EdmTask_SupportsChangeState

16 = Task can be launched via a workflow, state, change command

EdmTask_SupportsDetails4 = Add-in extends the task details dialog box in the task list window in the Administration tool; the add-in will receive a call to its IEdmAddIn5::OnCmd method with the argument EdmCmdType.EdmCmd_TaskDetails when the dialog box is to be extended
EdmTask_SupportsInitExec2 = Add-in wants to have its IEdmAddIn5::OnCmd method called when the user launches the task; this callback type (EdmCmdType.EdmCmd_TaskLaunch) can be used to provide a more sophisticated user interface than one created with the card editor; if this flag is included, then multiple files will be processed by a single task instance; otherwise, each file will be processed by a separate task instance
EdmTask_SupportsInitForm1 = Add-in supports displaying of a card created with the card editor; the card is used as the user interface when the task is launched, and the values of the card are accessible to the task add-in when it is executed
EdmTask_SupportsScheduling8 = Task can be scheduled

Remarks

The flags indicate what a task add-in is capable of doing.

See Also