VeriStand .NET API Reference

Procedure.AddNewGotoLabel Method

Adds a new GotoLabel step. This step jumps to the step specified by Label.

Namespace: NationalInstruments.VeriStand.SystemDefinitionAPI
Assembly: NationalInstruments.VeriStand.SystemDefinitionAPI (in NationalInstruments.VeriStand.SystemDefinitionAPI.dll) Version: 2013.0.0.0 (2013.0.0.0)
Visual Basic (Declaration)
Public Function AddNewGotoLabel ( _
	Name As String, _
	Description As String, _
	Label As Command _
) As Boolean
C#
public bool AddNewGotoLabel(
	string Name,
	string Description,
	Command Label
)
Visual C++
public:
bool AddNewGotoLabel(
	String^ Name, 
	String^ Description, 
	Command^ Label
)

Parameters

Name
Type: System.String
The name of the step.
Description
Type: System.String
The description of the step.
Label
Type: NationalInstruments.VeriStand.SystemDefinitionAPI.Command
The procedure step to jump to when the GotoLabel step is executed.

Return Value

true (True in Visual Basic) if the GotoLabel step was added successfully.

See Also