DesignTool Property

DesignTool Property

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Contains a string describing the workflow design tool (if any) used to create this ProcessDefinition.

Applies To

IProcessDefinition Interface

Type Library

Microsoft CDO Workflow Objects for Microsoft Exchange

DLL Implemented In

CDOWF.DLL

Syntax

[Visual Basic]Property DesignTool As String

[C++]HRESULT get_DesignTool(BSTRpVal);
HRESULT put_DesignTool(BSTR Val);

Parameters

  • pVal
    Returns the value of the DesignTool property as a reference to a BSTR.
  • Val
    Sets the value of the DesignTool property to the value of the BSTR.

Remarks

This property corresponds directly to the Exchange store property https://schemas.microsoft.com/cdo/workflow/designtool. Applications can also use Microsoft ActiveX Data Objects (ADO), OLE DB, or WebDAV to update this property directly.

This property is for informational purposes only and does not affect the execution of a workflow. If you are writing a workflow design tool, use this field to store information specific to your design tool. For example, use this property in your tool to determine which w workflow designs are compatible with your tool.

Example

This example uses a file URL with the Exchange OLE DB (ExOLEDB) provider. The ExOLEDB provider also supports The HTTP: URL Scheme.

[Visual Basic]

 Dim pd As New CDOWF.ProcessDefinition

Dim iDsrc As IDataSource Set iDsrc = pd.DataSource

Dim PdItemURL As String PdItemURL = "file://./backofficestorage/" & _ Environ("USERDNSDOMAIN") & _ "/Public Folders/workflow/test1/design1.wfd" iDsrc.Open PdItemURL

Dim ToolName As String ToolName = "Microsoft Workflow Designer for Exchange 2000 Server 1.0.27" pd.DesignTool = ToolName

iDsrc.Save

See Also

Workflow Designer for Exchange 2000 Server

Send us your feedback about the Microsoft Exchange Server 2003 SDK.

Build: June 2007 (2007.618.1)

© 2003-2006 Microsoft Corporation. All rights reserved. Terms of use.