ArcFM Desktop Developer Guide
SupportedParameterNames Property (IMMPxSubtask2)


Version: 10.2.1b and 10.2.1b SP1

Resource Center Home

This property passes in a collection of parameters that will appear in the Process Framework Administration Tool (on the Node Types tab, Task Properties, Parameters field).
Syntax
'Declaration
 
<DispIdAttribute(1610678274)>
ReadOnly Property SupportedParameterNames As IDictionary
'Usage
 
Dim instance As IMMPxSubtask2
Dim value As IDictionary
 
value = instance.SupportedParameterNames
[DispId(1610678274)]
IDictionary SupportedParameterNames {get;}

Property Value

Identifies the parameters supported by the task and populates the Parameters field

Example
The following code sample shows how IMMPxSubtask2::SupportedParameterNames may be implemented.
Visual Basic Copy Code
Private Property Get IMMPxSubtask2_SupportedParameterNames() As Miner.Interop.Process.IDictionary

  Dim pDictionary As IDictionary
  Set pDictionary = New Dictionary

  pDictionary.Add mk_sRoleName, "User Role"

  Set IMMPxSubtask2_SupportedParameterNames = pDictionary

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