CVariable Constructors: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:cVariable Constructors}}{{Template:API}}{{Template:APIBreadcrumb | {{DISPLAYTITLE:cVariable Constructors}}{{Template:API}}{{Template:APIBreadcrumb|.[[CVariable_Class|cVariable]]}} | ||
<onlyinclude>A parameterized constructor for the [[CVariable Class|cVariable]] class. ( | <onlyinclude>A parameterized constructor for the [[CVariable Class|cVariable]] class. (.NET only)</onlyinclude> | ||
== Syntax == | == Syntax == | ||
Line 16: | Line 16: | ||
{{APIComment|'The following code creates a new variable called "Variable_A."}} | {{APIComment|'The following code creates a new variable called "Variable_A."}} | ||
{{APIPrefix|Dim}} Variable {{APIPrefix|As}} cVariable({{APIString|"Variable_A"}}) | {{APIPrefix|Dim}} Variable {{APIPrefix|As New}} cVariable({{APIString|"Variable_A"}}) |
Latest revision as of 15:16, 3 August 2017
Member of: SynthesisAPI.cVariable
A parameterized constructor for the cVariable class. (.NET only)
Syntax
cVariable(Name)
Parameters
Name
- Required. String. The name for the new variable.
Example
VB.NET 'The following code creates a new variable called "Variable_A." Dim Variable As New cVariable("Variable_A")