Repository.Xfmea.GetItemInSystemHierarchy Method
Jump to navigation
Jump to search
Member of: SynthesisAPI10.Repository
Returns an XfmeaItem object, which represents an Xfmea, RCM++ or RBI system hierarchy item.
Syntax
.Xfmea.GetItemInSystemHierarchy(HID)
Parameters
HID
- Required. Integer. The record ID number of the system hierarchy item to retrieve.
Example
This example assumes that a system hierarchy item with ID#1 exists in the first available project of a repository.
VBA 'Declare a new Repository object and connect to a Synthesis repository. Dim MyRepository As New Repository MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10") 'Get system hierarchy item #1 from project #1. Dim Item As XfmeaItem MyRepository.Project.SetCurrentProject (1) Set Item = MyRepository.Xfmea.GetItemInSystemHierarchy(1) 'Output sample: Display the name of the item. MsgBox (Item.Nm)
VB.NET 'Declare a new Repository object and connect to a Synthesis repository. Dim MyRepository As New Repository MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10") 'Get system hierarchy item #1 from project #1. Dim Item As XfmeaItem MyRepository.Project.SetCurrentProject (1) Item = MyRepository.Xfmea.GetItemInSystemHierarchy(1) 'Output sample: Display the name of the item. MsgBox (Item.Nm)