Click or drag to resize

RemWorkflowGetWorkitem Method

Paperwork .Net Kütüphanesi
İstenen iş adımının bilgilerini getirir.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public rPW_WORKITEM GetWorkitem(
	string workitemId
)

Parameters

workitemId
Type: SystemString
İş adımı nesne numarası.

Return Value

Type: rPW_WORKITEM
rPW_WORKITEM türünde istenilen iş adımın bilgilerini döner.
Examples
C#
  
            public void GetWorkitem()
            {
                rPW_WORKITEM witem = p.rWorkflow.GetWorkitem("WORKITEM_ID");
                Console.WriteLine(witem.ACL_ID);
                Console.WriteLine(witem.ACTIVITY_ID);
                Console.WriteLine(witem.ATTACHMENT_ID);
                Console.WriteLine(witem.FORMCOMPLETE);
                Console.WriteLine(witem.FORMCOMPLETE);
                Console.WriteLine(witem.FORM_NAME);
                Console.WriteLine(witem.FORM_TITLE);
                Console.WriteLine(witem.FORM_VERSION);
                Console.WriteLine(witem.ITEM_OWNER);
                Console.WriteLine(witem.LAST_PERFORMER);
                Console.WriteLine(witem.WORKFLOW_NAME);
                Console.WriteLine(witem.WORKITEM_ID);
                Console.ReadLine();
            }
See Also