Repository.Variable.AddVariable: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 10: | Line 10: | ||
{{APIPrefix|As Boolean}}<br> | {{APIPrefix|As Boolean}}<br> | ||
{{APIComment|Saves a new Variable in the repository.}} | {{APIComment|Saves a new Variable in the repository.}} | ||
== Usage Example == | |||
{{APIComment|Declare a new repository connection class.}} | |||
Private WithEvents MyRepository As New Repository | |||
{{APIComment|Connect to the Synthesis repository.}} | |||
Dim Success As Boolean = False | |||
Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | |||
{{APIComment|Declare a new cVariable.}} | |||
Dim newVariable As New cVariable("NewVariable1") | |||
{{APIComment|Add the new variable to the repository.}} | |||
Dim SuccessAddVariable As Boolean | |||
SuccessAddVariable = MyRepository.AddVariable(newVariable) |
Revision as of 22:52, 18 September 2013
Property Syntax
AddVariable(
ByVal
var
As
cVariable)
As Boolean
Saves a new Variable in the repository.
Usage Example
Declare a new repository connection class.
Private WithEvents MyRepository As New Repository
Connect to the Synthesis repository.
Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
Declare a new cVariable.
Dim newVariable As New cVariable("NewVariable1")
Add the new variable to the repository.
Dim SuccessAddVariable As Boolean SuccessAddVariable = MyRepository.AddVariable(newVariable)