Repository.Control.GetXfmeaControl: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Template:API}}{{Template:APIBreadcrumb | {{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}} | ||
< | <onlyinclude>Returns a '''[[CXfmeaControl Class|cXfmeaControl]]''' object that represents a given control resource in the current project. Returns nothing if the control does not exist or is not in the current project.</onlyinclude> | ||
== Syntax == | == Syntax == | ||
'''Control.GetXfmeaControl'''(''ID'') | '''.Control.GetXfmeaControl'''(''ID'') | ||
=== Parameters === | === Parameters === | ||
''ID'' | ''ID'' | ||
Line 15: | Line 16: | ||
'''VBA''' | '''VBA''' | ||
{{APIComment|' | {{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}} | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | ||
MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}}) | |||
{{APIComment|'Get control #1 from project #1.}} | {{APIComment|'Get control #1 from project #1.}} | ||
{{APIPrefix|Dim}} MyControl {{APIPrefix|As}} cXfmeaControl | |||
MyRepository.Project.SetCurrentProject(1) | |||
{{APIPrefix|Set}} MyControl = MyRepository.Control.GetXfmeaControl(1) | |||
{{APIComment|'Output sample: Display the name and ID of the control.}} | {{APIComment|'Output sample: Display the name and ID of the control.}} | ||
{{APIPrefix|Dim}} ControlName {{APIPrefix|As}} String | |||
{{APIPrefix|Dim}} ControlID {{APIPrefix|As}} Integer | |||
ControlName = MyControl.Name | |||
ControlID = MyControl.ID | |||
MsgBox ({{APIString|"ID# "}} & ControlID & {{APIString|", "}} & ControlName) | |||
'''VB.NET''' | '''VB.NET''' | ||
{{APIComment|' | {{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}} | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | ||
MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}}) | |||
{{APIComment|'Get control #1 from project #1.}} | |||
{{APIPrefix|Dim}} MyControl {{APIPrefix|As}} cXfmeaControl | |||
MyRepository.Project.SetCurrentProject(1) | |||
MyControl = MyRepository.Control.GetXfmeaControl(1) | |||
{{APIComment|'Output sample: Display the name and ID of the control.}} | {{APIComment|'Output sample: Display the name and ID of the control.}} | ||
{{APIPrefix|Dim}} ControlName {{APIPrefix|As}} String | |||
{{APIPrefix|Dim}} ControlID {{APIPrefix|As}} Integer | |||
ControlName = MyControl.Name | |||
ControlID = MyControl.ID | |||
MsgBox ({{APIString|"ID# "}} & ControlID & {{APIString|", "}} & ControlName) |
Latest revision as of 18:52, 9 June 2016
Member of: SynthesisAPI.Repository
Returns a cXfmeaControl object that represents a given control resource in the current project. Returns nothing if the control does not exist or is not in the current project.
Syntax
.Control.GetXfmeaControl(ID)
Parameters
ID
- Integer. The ID number of the control to retrieve.
Example
This example assumes that an Xfmea control with ID#1 exists in 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 control #1 from project #1. Dim MyControl As cXfmeaControl MyRepository.Project.SetCurrentProject(1) Set MyControl = MyRepository.Control.GetXfmeaControl(1) 'Output sample: Display the name and ID of the control. Dim ControlName As String Dim ControlID As Integer ControlName = MyControl.Name ControlID = MyControl.ID MsgBox ("ID# " & ControlID & ", " & ControlName)
VB.NET 'Declare a new Repository object and connect to a Synthesis repository. Dim MyRepository As New Repository MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10") 'Get control #1 from project #1. Dim MyControl As cXfmeaControl MyRepository.Project.SetCurrentProject(1) MyControl = MyRepository.Control.GetXfmeaControl(1) 'Output sample: Display the name and ID of the control. Dim ControlName As String Dim ControlID As Integer ControlName = MyControl.Name ControlID = MyControl.ID MsgBox ("ID# " & ControlID & ", " & ControlName)