Repository.Xfmea.GetXfmeaCause Method: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<onlyinclude>Gets the | <onlyinclude>Gets the cause with the designated ID number and returns it as an '''[[XfmeaCause Class|XfmeaCause]]''' object. Returns nothing if the cause does not exist or is not in the current project.</onlyinclude> | ||
==Syntax== | ==Syntax== |
Revision as of 22:38, 11 September 2015
Member of: SynthesisAPI10.Repository
Gets the 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 record ID number of the cause to retrieve.
Example
This example assumes that a cause with ID#1 exists in a repository.
VBA 'Add code to connect to a Synthesis repository. Dim MyRepository As New Repository ... 'Get cause ID#1 from the first project in the repository. 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 cause ID#1 from the first project in the repository. Dim ACause As XfmeaCause MyRepository.Project.SetCurrentProject(1) ACause = MyRepository.Xfmea.GetXfmeaCause(1) 'Output sample: Display the description of the cause. MsgBox (ACause.Dsc)