ArcFM Desktop Developer Guide
SupportedExtensions Property (IMMPxSubtask2)


Version: 10.2.1b and 10.2.1b SP1

Resource Center Home

This property allows you to specify the Process Framework extensions in which the subtask is available.
Syntax
'Declaration
 
<DispIdAttribute(1610678275)>
ReadOnly Property SupportedExtensions As IMMEnumExtensionNames
'Usage
 
Dim instance As IMMPxSubtask2
Dim value As IMMEnumExtensionNames
 
value = instance.SupportedExtensions
[DispId(1610678275)]
IMMEnumExtensionNames SupportedExtensions {get;}

Property Value

Reads the extensions in which the task is supported and returns an IMMEnumExtensionNames object

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

  If m_pPxExtNames Is Nothing Then
    Set m_pPxExtNames = New PxExtensionNames
    m_pPxExtNames.Add "MMSessionManager"
  End If

  Set IMMPxSubtask2_SupportedExtensions = m_pPxExtNames

End Property

The subtask in the example above is available only in the Session Manager extension. If you wish to make a subtask available in only Workflow Manager, reference "MMWorkflowManager" rather than "MMSessionManager".

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