Repository.Xfmea.GetXfmeaCause Method

From ReliaWiki
Revision as of 20:13, 25 August 2015 by Kate Racaza (talk | contribs) (Created page with '{{Template:API}}{{Template:APIBreadcrumb|10|.Repository}} <onlyinclude>Gets the FMEA cause with the designated ID number and returns it as an '''[[XfmeaCau…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
APIWiki.png


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)