Repository.Control.AddXfmeaControl: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{Template:APIClass|Repository Class|Repository}} Saves a new XfmeaControl in the repository. ==Syntax== *AddAction(ByVal control As cXfmeaControl) As Boolean')
 
No edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}
Saves a new XfmeaControl in the repository.


==Syntax==
 
*AddAction(ByVal control As cXfmeaControl) As Boolean
<onlyinclude>Adds a new Xfmea control to the current project. Returns a '''Boolean''' value; when true, indicates a successful save.</onlyinclude>
 
== Syntax ==
'''.Control.AddXfmeaControl'''(''control'')
 
=== Parameters ===
''control''
:Required. The [[CXfmeaControl Class|cXfmeaControl]] object that represents the control to be added.
 
 
== Example ==
This example creates a new Xfmea control resource, and then saves it in the first available project in a Synthesis repository.
'''VBA'''
{{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}}
  {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})
 
{{APIComment|'Create a new control. The following example creates a control with the description "MyNewControl."}}
  {{APIPrefix|Dim}} NewControl {{APIPrefix|As New}} cXfmeaControl
  NewControl.ControlDescription = {{APIString|"MyNewControl"}}
{{APIComment|'Add the new control to project #1.}}
  MyRepository.Project.SetCurrentProject(1) 
  {{APIPrefix|Call}} MyRepository.Control.AddXfmeaControl(NewControl)
 
'''VB.NET'''
{{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}}
  {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})
 
{{APIComment|'Create a new control. The following example creates a control with the description "MyNewControl."}}
  {{APIPrefix|Dim}} NewControl {{APIPrefix|As New}} cXfmeaControl ({{APIString|"MyNewControl"}})
{{APIComment|'Add the new control to project #1.}}
  MyRepository.Project.SetCurrentProject(1) 
  MyRepository.Control.AddXfmeaControl(NewControl)

Latest revision as of 16:41, 9 June 2016

APIWiki.png


Member of: SynthesisAPI.Repository


Adds a new Xfmea control to the current project. Returns a Boolean value; when true, indicates a successful save.

Syntax

.Control.AddXfmeaControl(control)

Parameters

control

Required. The cXfmeaControl object that represents the control to be added.


Example

This example creates a new Xfmea control resource, and then saves it in the first available project in a Synthesis repository.

VBA

 'Declare a new Repository object and connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")
 
 'Create a new control. The following example creates a control with the description "MyNewControl." 
  Dim NewControl As New cXfmeaControl
  NewControl.ControlDescription = "MyNewControl"

 'Add the new control to project #1. 
  MyRepository.Project.SetCurrentProject(1)   
  Call MyRepository.Control.AddXfmeaControl(NewControl)
VB.NET

 'Declare a new Repository object and connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")
 
 'Create a new control. The following example creates a control with the description "MyNewControl." 
  Dim NewControl As New cXfmeaControl ("MyNewControl")

 'Add the new control to project #1. 
  MyRepository.Project.SetCurrentProject(1)   
  MyRepository.Control.AddXfmeaControl(NewControl)