Repository.Xfmea.GetXfmeaCause Method
Jump to navigation
Jump to search
Member of: SynthesisAPI10.Repository
Gets the FMEA cause with the designated ID number and returns it as an XfmeaCause object. Returns nothing if the cause does not exist or is not in the current project.
Syntax
.Xfmea.GetXfmeaCause(ID)
Parameters
ID
- Required. Integer. The ID number of the FMEA cause to retrieve.
Example
This example assumes that an FMEA cause with ID#1 exists in a repository.
VBA 'Add code to connect to a Synthesis repository. Dim MyRepository As New Repository ... 'Get FMEA cause #1 from project #1. Dim ACause As XfmeaCause MyRepository.Project.SetCurrentProject(1) Set ACause = MyRepository.Xfmea.GetXfmeaCause(1) 'Output sample: Display the description of the cause. MsgBox (ACause.Dsc)
VB.NET 'Add code to connect to a Synthesis repository. Dim MyRepository As New Repository ... 'Get FMEA cause #1 from project #1. Dim ACause As XfmeaCause MyRepository.Project.SetCurrentProject(1) ACause = MyRepository.Xfmea.GetXfmeaCause(1) 'Output sample: Display the description of the cause. MsgBox (ACause.Dsc)