ArcFM Desktop Developer Guide
Parameters Property (IMMPxSubtask2)


Version: 10.2.1b and 10.2.1b SP1

Resource Center Home

This property passes in a collection of parameters (name and value) that have been set in the Process Framework Administration Tool (on the Node Types tab, Task Properties, Parameters field).
Syntax
'Declaration
 
<DispIdAttribute(1610678273)>
WriteOnly Property Parameters As IDictionary
'Usage
 
Dim instance As IMMPxSubtask2
 
instance.Parameters = value
[DispId(1610678273)]
IDictionary Parameters {set;}

Property Value

Stores a collection of parameter names and corresponding values entered by the user in the Process Framework Administration Tool as IDictionary.

Example
The following code sample shows how IMMPxSubtask2::Parameters may be implemented.
Visual Basic Copy Code
Private Property Set IMMPxSubtask2_Parameters(ByVal RHS As Miner.Interop.Process.IDictionary)

  Dim pDictionary As IDictionary
  Set pDictionary = RHS

  If pDictionary Is Nothing Then Exit Property

  If pDictionary.Exists(mk_sRoleName) Then
    m_sRoleName = pDictionary.Item(mk_sRoleName)
  End If

End Property
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

IMMPxSubtask2 Interface
IMMPxSubtask2 Members

 

 


Send Comment