Repository.Xfmea.GetAllXfmeaFunctions Method: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) (Created page with '{{Template:API}}{{Template:APIBreadcrumb|10|.Repository}} <onlyinclude>Gets a list of all existing FMEA functions in the current project. Returns an '''[[X…') |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<onlyinclude>Gets a list of all existing FMEA functions | <onlyinclude>Gets a list of all existing FMEA functions associated with a system hierarchy item. Returns an '''[[XfmeaFunction Class|XfmeaFunction]]''' object array that contains the properties of the functions.</onlyinclude> | ||
== Syntax == | == Syntax == | ||
Line 25: | Line 25: | ||
{{APIComment|'Get a list of all FMEA functions in project #1.}} | {{APIComment|'Get a list of all FMEA functions associated with system hierarchy item #1 in project #1.}} | ||
{{APIPrefix|Dim}} ListofFunctions() {{APIPrefix|As}} XfmeaFunction | {{APIPrefix|Dim}} ListofFunctions() {{APIPrefix|As}} XfmeaFunction | ||
MyRepository.Project.SetCurrentProject (1) | MyRepository.Project.SetCurrentProject (1) | ||
ListofFunctions = MyRepository.Xfmea.GetAllXfmeaFunctions(1,{{APIPrefix|True}}) | ListofFunctions = MyRepository.Xfmea.GetAllXfmeaFunctions(1,{{APIPrefix|True}}) | ||
{{APIComment|'Output sample: Display the | {{APIComment|'Output sample: Display the number of elements in the array.}} | ||
{{APIPrefix|Dim}} | {{APIPrefix|Dim}} NumberofElements {{APIPrefix|As}} Integer | ||
NumberofElements = UBound(ListofFunctions) - LBound(ListofFunctions) + 1 | |||
MsgBox (NumberofElements) | |||
MsgBox ( |
Revision as of 15:03, 21 August 2015
Member of: SynthesisAPI10.Repository
Gets a list of all existing FMEA functions associated with a system hierarchy item. Returns an XfmeaFunction object array that contains the properties of the functions.
Syntax
.Xfmea.GetAllXfmeaFunctions(HID, IncludeLinkedAnalyses)
Parameters
HID
- Integer. The Hierarchy ID or record ID of system hierarchy item. (Required)
IncludeLinkedAnalyses
- Boolean. Indicates whether to include linked FMEAs in the array. (Required)
Example
This example assumes that system hierarchy items with FMEA functions exist in the first available project of a repository.
VBA|VB.NET 'Add code to connect to a Synthesis repository. Dim MyRepository As New Repository ... 'Get a list of all FMEA functions associated with system hierarchy item #1 in project #1. Dim ListofFunctions() As XfmeaFunction MyRepository.Project.SetCurrentProject (1) ListofFunctions = MyRepository.Xfmea.GetAllXfmeaFunctions(1,True) 'Output sample: Display the number of elements in the array. Dim NumberofElements As Integer NumberofElements = UBound(ListofFunctions) - LBound(ListofFunctions) + 1 MsgBox (NumberofElements)