Files
smargopolo/Automation1/APIs/DotNet/net462/Aerotech.Automation1.DotNet.xml
2025-10-27 15:38:00 +01:00

40940 lines
2.7 MiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>Aerotech.Automation1.DotNet</name>
</assembly>
<members>
<member name="T:Aerotech.Automation1.DotNet.Properties.Resources.Files">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Properties.Resources.Files.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Properties.Resources.Files.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Properties.Resources.Files.AeroScriptStandardLibrary">
<summary>
Looks up a localized resource of type System.Byte[].
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Properties.Resources.Text">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Properties.Resources.Text.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Properties.Resources.Text.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Axis">
<summary>
Represents a motion axis on an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Axis.#ctor(System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},Aerotech.Automation1.DotNet.RefreshableLazy{System.Collections.Generic.IReadOnlyList{Aerotech.Automation1.DotNet.HyperWireDevice}})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Axis.AxisIndex">
<summary>
Gets the numeric index of this axis which can be used to uniquely identify this axis.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Axis.AxisName">
<summary>
Gets the string name of this axis which can be used to uniquely identify this axis.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Axis.HyperWireDevice">
<summary>
Gets the parent HyperWire device (which is always a HyperWire drive) that owns this axis, or null if this is a virtual axis.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisCollection">
<summary>
Represents a collection of motion axes on an Automation1 controller, accessed by axis name or axis index.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisCollection.#ctor(Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{System.Collections.Generic.IReadOnlyList{Aerotech.Automation1.DotNet.HyperWireDevice}})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisCollection.Count">
<summary>
Gets the number of axes on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisCollection.Item(System.Int32)">
<summary>
Gets the <see cref="T:Aerotech.Automation1.DotNet.Axis"/> object for a specific axis index.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisCollection.Item(System.String)">
<summary>
Gets the <see cref="T:Aerotech.Automation1.DotNet.Axis"/> object for a specific axis name.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the axes on the Automation1 controller.
</summary>
<returns>An enumerator that can be used to iterate through the axes on the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the axes on the Automation1 controller.
</summary>
<returns>An enumerator that can be used to iterate through the axes on the Automation1 controller.</returns>
</member>
<member name="T:Aerotech.Automation1.DotNet.ICommandQueue">
<summary>
An interface to add commands to a command queue.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICommandQueue.Execute(System.String)">
<summary>
Adds an AeroScript command to the command queue.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICommandQueue.ExecuteFromMdkFile(System.String)">
<summary>
Adds all AeroScript lines in the specified MDK file to the command queue.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICommandQueue.ExecuteFromMdkFile(System.String,System.Int32)">
<summary>
Adds all AeroScript lines in the specified MDK file to the command queue.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICommandQueue.ExecuteFromControllerFile(System.String)">
<summary>
Adds all AeroScript lines in the specified controller file to the command queue.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICommandQueue.ExecuteFromControllerFile(System.String,System.Int32)">
<summary>
Adds all AeroScript lines in the specified controller file to the command queue.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueue">
<summary>
Represents a command queue on a specific task on an Automation1 controller. This class lets you manage and add commands to the command queue.
Use the <see cref="M:Aerotech.Automation1.DotNet.Commands.BeginCommandQueue(System.Int32,System.Int32,System.Boolean)"/> method to begin a command queue on a specific task.
When you are done with the command queue, use the <see cref="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue)"/> method to end the command queue and return the task to its normal state.
A command queue on a task will store all AeroScript commands added to the command queue and execute them sequentially, in the order they were added.
Adding AeroScript commands to the command queue does not block (unless the command queue is full and <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is true), instead the AeroScript command is added to the command queue and will be executed in the future once all previously added commands are executed.
A command queue is usually used to avoid the communication latency in between AeroScript commands when executing your motion with the Commands API (such as when using velocity blending where the communication latency will cause deceleration to occur).
A task can only execute queued commands while the command queue is active; non-queued commands from the Commands API and AeroScript programs cannot run while the command queue is active.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ControllerFiles,Aerotech.Automation1.DotNet.InternalAeroScriptCompiler,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},Aerotech.Automation1.DotNet.IStatus,System.Int32,System.String,System.Int32,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueue.Commands">
<summary>
Gets a way to add commands to the command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueue.TaskIndex">
<summary>
Gets the numeric index of the task that this command queue exists on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueue.TaskName">
<summary>
Gets the name of the task that this command queue exists on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueue.CommandCapacity">
<summary>
Gets the maximum number of unexecuted AeroScript commands that can be stored in this command queue, after which the command queue is full.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull">
<summary>
Gets whether or not to block if you add an AeroScript command when this command queue is full.
If true, the add will block until the command can be added. If false, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueue.Status">
<summary>
Gets the current status of this command queue.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty">
<summary>
Waits for the command queue to be empty, blocking until all AeroScript commands added to the command queue have been executed.
You can use this method to make sure the command queue is no longer executing commands before ending it with <see cref="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue)"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty(System.Int32)">
<summary>
Waits for the command queue to be empty, blocking until all AeroScript commands added to the command queue have been executed.
You can use this method to make sure the command queue is no longer executing commands before ending it with <see cref="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue)"/>.
</summary>
<param name="millisecondsTimeout">The number of milliseconds to wait for the command queue to be empty. If the command queue takes longer than this amount of time to be empty, this method will return.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.Resume">
<summary>
Resumes the execution of queued AeroScript commands from this command queue.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.Pause">
<summary>
Pauses the execution of queued AeroScript commands from the command queue. The currently executing AeroScript command, if any, will complete normally; the command will not be aborted.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.Aerotech#Automation1#DotNet#ICommandQueue#Execute(System.String)">
<summary>
Adds an AeroScript command containing one or more lines of AeroScript to the command queue.
This method does not block (unless the command queue is full and <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is true), instead the AeroScript command is added to the command queue and will be executed in the future once all previously added commands are executed.
</summary>
<param name="stringAeroScript">The AeroScript string text containing one or more lines of AeroScript to compile and add to the command queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.Aerotech#Automation1#DotNet#ICommandQueue#ExecuteFromMdkFile(System.String)">
<summary>
Adds all AeroScript lines in the specified MDK file to the command queue.
The specified MDK file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the MDK file still in the command queue, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the MDK file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
By default there will be 1000 file lines per command which will work in most cases.
If the command queue empties before the MDK file is read in its entirety, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromMdkFile(System.String,System.Int32)"/> overload with a value greater than 1000.
</summary>
<param name="mdkFilePath">A MDK file that contains AeroScript lines to be executed by the command queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.Aerotech#Automation1#DotNet#ICommandQueue#ExecuteFromMdkFile(System.String,System.Int32)">
<summary>
Adds all AeroScript lines in the specified MDK file to the command queue.
The specified MDK file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the MDK file still in the command queue,
call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the MDK file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
<paramref name="numberOfLinesPerCommand"/> specifies how many file lines to read from the MDK file for each individual command.
If the command queue empties before the MDK file is read in its entirety, increase <paramref name="numberOfLinesPerCommand"/>.
</summary>
<param name="mdkFilePath">A MDK file that contains one or more lines of AeroScript to be executed by the command queue.</param>
<param name="numberOfLinesPerCommand">The number of file lines to read from the MDK file for each individual command to add to the command queue. <paramref name="numberOfLinesPerCommand"/> must be greater than one.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.Aerotech#Automation1#DotNet#ICommandQueue#ExecuteFromControllerFile(System.String)">
<summary>
Adds all AeroScript lines in the specified controller file to the command queue.
The specified controller file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the controller file still in the command queue, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the controller file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
By default there will be 1000 file lines per command which will work in most cases.
If the command queue empties before the controller file is read in its entirety, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromControllerFile(System.String,System.Int32)"/> overload with a value greater than 1000.
</summary>
<param name="controllerFileName">A controller file that contains AeroScript lines to be executed by the command queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.Aerotech#Automation1#DotNet#ICommandQueue#ExecuteFromControllerFile(System.String,System.Int32)">
<summary>
Adds all AeroScript lines in the specified controller file to the command queue.
The specified controller file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the controller file still in the command queue,
call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the controller file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
<paramref name="numberOfLinesPerCommand"/> specifies how many file lines to read from the controller file for each individual command.
If the command queue empties before the controller file is read in its entirety, increase <paramref name="numberOfLinesPerCommand"/>.
</summary>
<param name="controllerFileName">A controller file that contains one or more lines of AeroScript to be executed by the command queue.</param>
<param name="numberOfLinesPerCommand">The number of file lines to read from the controller file for each individual command to add to the command queue. <paramref name="numberOfLinesPerCommand"/> must be greater than one.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.EndQueue(System.Int32)">
<summary>
Puts the command queue into the "queueEnded" state so that a user can not reuse a CommandQueue object that has been ended.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.executeLinesFromFile(System.String,System.String[],System.Int32)">
<summary>
Compiles lines from a file and adds them to the command queue as commands containing multiple lines.
If a compiler error is found, this method calculates the line number of the error in the original file and throws a <see cref="T:Aerotech.Automation1.DotNet.CompileException"/> with the accurate file line number.
</summary>
<param name="fileName">The name of the file the commands came from.</param>
<param name="linesFromFile">The list of lines from the file.</param>
<param name="numberOfLinesPerCommand">The number of lines in each command sent to the compiler.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueue.execute(System.String)">
<summary>
Takes an AeroScript command containing one or more lines, compiles it, and adds it to the command queue to be executed.
This method blocks if the queue is full until the command can be added if <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is true, otherwise it will throw a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> exception.
</summary>
<param name="stringAeroScript">The AeroScript string text containing one or more lines of AeroScript to compile and add to the command queue.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands">
<summary>
A class to add AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
<summary>
A class to add AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.#ctor(Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},Aerotech.Automation1.DotNet.ICommandQueue)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.Execute(System.String)">
<summary>
Adds an AeroScript command containing one or more lines of AeroScript to the command queue.
This method does not block (unless the command queue is full and <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is true), instead the AeroScript command is added to the command queue and will be executed in the future once all previously added commands are executed.
</summary>
<param name="stringAeroScript">The AeroScript string text containing one or more lines of AeroScript to compile and add to the command queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromMdkFile(System.String)">
<summary>
Adds all AeroScript lines in the specified MDK file to the command queue.
The specified MDK file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the MDK file still in the command queue, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the MDK file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
By default there will be 1000 file lines per command which will work in most cases.
If the command queue empties before the MDK file is read in its entirety, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromMdkFile(System.String,System.Int32)"/> overload with a value greater than 1000.
</summary>
<param name="mdkFilePath">A MDK file that contains AeroScript lines to be executed by the command queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromMdkFile(System.String,System.Int32)">
<summary>
Adds all AeroScript lines in the specified MDK file to the command queue.
The specified MDK file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the MDK file still in the command queue,
call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the MDK file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
<paramref name="numberOfLinesPerCommand"/> specifies how many file lines to read from the MDK file for each individual command.
If the command queue empties before the MDK file is read in its entirety, increase <paramref name="numberOfLinesPerCommand"/>.
</summary>
<param name="mdkFilePath">A MDK file that contains one or more lines of AeroScript to be executed by the command queue.</param>
<param name="numberOfLinesPerCommand">The number of file lines to read from the MDK file for each individual command to add to the command queue. <paramref name="numberOfLinesPerCommand"/> must be greater than one.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromControllerFile(System.String)">
<summary>
Adds all AeroScript lines in the specified controller file to the command queue.
The specified controller file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the controller file still in the command queue, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the controller file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
By default there will be 1000 file lines per command which will work in most cases.
If the command queue empties before the controller file is read in its entirety, call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromControllerFile(System.String,System.Int32)"/> overload with a value greater than 1000.
</summary>
<param name="controllerFileName">A controller file that contains AeroScript lines to be executed by the command queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ExecuteFromControllerFile(System.String,System.Int32)">
<summary>
Adds all AeroScript lines in the specified controller file to the command queue.
The specified controller file can only contain simple lines of AeroScript; it cannot contain variables, if statements, loops, or other control flow statements.
This method blocks and waits until all AeroScript lines are added to the queue, but it does not wait for all AeroScript lines to execute.
When this method returns, there might be unexecuted AeroScript lines from the controller file still in the command queue,
call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueue.WaitForEmpty"/> method after this method to make sure all AeroScript lines have been executed.
If <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.ShouldBlockIfFull"/> is false and the command queue fills while reading the controller file, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.
The AeroScript lines will be added to the command queue as commands containing multiple lines at a time in order to increase throughput.
<paramref name="numberOfLinesPerCommand"/> specifies how many file lines to read from the controller file for each individual command.
If the command queue empties before the controller file is read in its entirety, increase <paramref name="numberOfLinesPerCommand"/>.
</summary>
<param name="controllerFileName">A controller file that contains one or more lines of AeroScript to be executed by the command queue.</param>
<param name="numberOfLinesPerCommand">The number of file lines to read from the controller file for each individual command to add to the command queue. <paramref name="numberOfLinesPerCommand"/> must be greater than one.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands">
<summary>
A class to add Motion AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Disable(System.String)">
<summary>
Adds the Disable AeroScript command to the command queue.
Disables the axis.
Executes on this command queue's task.
</summary>
<param name="axisName">The axis to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Disable(System.String[])">
<summary>
Adds the Disable AeroScript command to the command queue.
Disables the axes.
Executes on this command queue's task.
</summary>
<param name="axisNames">The axes to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Disable(System.Int32)">
<summary>
Adds the Disable AeroScript command to the command queue.
Disables the axis.
Executes on this command queue's task.
</summary>
<param name="axisIndex">The axis to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Disable(System.Int32[])">
<summary>
Adds the Disable AeroScript command to the command queue.
Disables the axes.
Executes on this command queue's task.
</summary>
<param name="axisIndices">The axes to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Dwell(System.Double)">
<summary>
Adds the Dwell AeroScript command to the command queue.
Suspends the execution of the task for a specified quantity of time.
Executes on this command queue's task.
</summary>
<param name="dwellTime">The quantity of time to suspend the task, in seconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Enable(System.Int32)">
<summary>
Adds the Enable AeroScript command to the command queue.
Enables the axis so that you can command motion.
Executes on this command queue's task.
</summary>
<param name="axis">The axis to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Enable(System.String)">
<summary>
Adds the Enable AeroScript command to the command queue.
Enables the axis so that you can command motion.
Executes on this command queue's task.
</summary>
<param name="axis">The axis to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Enable(System.Int32[])">
<summary>
Adds the Enable AeroScript command to the command queue.
Enables the axes so that you can command motion.
Executes on this command queue's task.
</summary>
<param name="axes">The axes to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Enable(System.String[])">
<summary>
Adds the Enable AeroScript command to the command queue.
Enables the axes so that you can command motion.
Executes on this command queue's task.
</summary>
<param name="axes">The axes to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Home(System.Int32)">
<summary>
Adds the Home AeroScript command to the command queue.
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Home(System.String)">
<summary>
Adds the Home AeroScript command to the command queue.
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Home(System.Int32[])">
<summary>
Adds the Home AeroScript command to the command queue.
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on this command queue's task.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.Home(System.String[])">
<summary>
Adds the Home AeroScript command to the command queue.
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on this command queue's task.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.HomeAsync(System.Int32)">
<summary>
Adds the HomeAsync AeroScript command to the command queue.
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on this command queue's task.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.HomeAsync(System.String)">
<summary>
Adds the HomeAsync AeroScript command to the command queue.
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on this command queue's task.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.HomeAsync(System.Int32[])">
<summary>
Adds the HomeAsync AeroScript command to the command queue.
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on this command queue's task.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.HomeAsync(System.String[])">
<summary>
Adds the HomeAsync AeroScript command to the command queue.
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on this command queue's task.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveAbsolute(System.Int32,System.Double,System.Double)">
<summary>
Adds the MoveAbsolute AeroScript command to the command queue.
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveAbsolute(System.String,System.Double,System.Double)">
<summary>
Adds the MoveAbsolute AeroScript command to the command queue.
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveAbsolute(System.Int32[],System.Double[],System.Double[])">
<summary>
Adds the MoveAbsolute AeroScript command to the command queue.
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveAbsolute(System.String[],System.Double[],System.Double[])">
<summary>
Adds the MoveAbsolute AeroScript command to the command queue.
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double)">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double)">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double,System.Double)">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double,System.Double)">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[])">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[])">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[],System.Double)">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[],System.Double)">
<summary>
Adds the MoveCcw AeroScript command to the command queue.
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double)">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double)">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double,System.Double)">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double,System.Double)">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[])">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[])">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[],System.Double)">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[],System.Double)">
<summary>
Adds the MoveCw AeroScript command to the command queue.
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveDelay(System.Int32,System.Double)">
<summary>
Adds the MoveDelay AeroScript command to the command queue.
Commands an axis to remain at zero velocity for a quantity of time.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveDelay(System.String,System.Double)">
<summary>
Adds the MoveDelay AeroScript command to the command queue.
Commands an axis to remain at zero velocity for a quantity of time.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveDelay(System.Int32[],System.Double)">
<summary>
Adds the MoveDelay AeroScript command to the command queue.
Commands axes to remain at zero velocity for a quantity of time.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveDelay(System.String[],System.Double)">
<summary>
Adds the MoveDelay AeroScript command to the command queue.
Commands axes to remain at zero velocity for a quantity of time.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerun(System.Int32,System.Double)">
<summary>
Adds the MoveFreerun AeroScript command to the command queue.
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerun(System.String,System.Double)">
<summary>
Adds the MoveFreerun AeroScript command to the command queue.
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerun(System.Int32[],System.Double[])">
<summary>
Adds the MoveFreerun AeroScript command to the command queue.
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerun(System.String[],System.Double[])">
<summary>
Adds the MoveFreerun AeroScript command to the command queue.
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerunStop(System.Int32)">
<summary>
Adds the MoveFreerunStop AeroScript command to the command queue.
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerunStop(System.String)">
<summary>
Adds the MoveFreerunStop AeroScript command to the command queue.
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerunStop(System.Int32[])">
<summary>
Adds the MoveFreerunStop AeroScript command to the command queue.
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveFreerunStop(System.String[])">
<summary>
Adds the MoveFreerunStop AeroScript command to the command queue.
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveIncremental(System.Int32,System.Double,System.Double)">
<summary>
Adds the MoveIncremental AeroScript command to the command queue.
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveIncremental(System.String,System.Double,System.Double)">
<summary>
Adds the MoveIncremental AeroScript command to the command queue.
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveIncremental(System.Int32[],System.Double[],System.Double[])">
<summary>
Adds the MoveIncremental AeroScript command to the command queue.
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveIncremental(System.String[],System.Double[],System.Double[])">
<summary>
Adds the MoveIncremental AeroScript command to the command queue.
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.Int32,System.Double)">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.String,System.Double)">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.Int32[],System.Double[])">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.String[],System.Double[])">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.Int32,System.Double,System.Double)">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.String,System.Double,System.Double)">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.Int32[],System.Double[],System.Double)">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveLinear(System.String[],System.Double[],System.Double)">
<summary>
Adds the MoveLinear AeroScript command to the command queue.
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MovePt(System.Int32[],System.Double[],System.Double)">
<summary>
Adds the MovePt AeroScript command to the command queue.
Specifies a single point in an arbitrary motion profile. The point contains the position of one or more axes and a time interval. You must call this function for each point in the motion profile.
Executes on this command queue's task.
</summary>
<param name="axes">The axes of the motion profile point.</param>
<param name="positions">The positions of each axis at the end of the time interval.</param>
<param name="time">The total time interval of the motion profile point in milliseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MovePt(System.String[],System.Double[],System.Double)">
<summary>
Adds the MovePt AeroScript command to the command queue.
Specifies a single point in an arbitrary motion profile. The point contains the position of one or more axes and a time interval. You must call this function for each point in the motion profile.
Executes on this command queue's task.
</summary>
<param name="axes">The axes of the motion profile point.</param>
<param name="positions">The positions of each axis at the end of the time interval.</param>
<param name="time">The total time interval of the motion profile point in milliseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MovePvt(System.Int32[],System.Double[],System.Double[],System.Double)">
<summary>
Adds the MovePvt AeroScript command to the command queue.
Specifies a single point in an arbitrary motion profile. The point contains the position and velocity of one or more axes and a time interval. You must call this function for each point in the motion profile.
Executes on this command queue's task.
</summary>
<param name="axes">The axes of the motion profile point.</param>
<param name="positions">The positions of each axis at the end of the time interval.</param>
<param name="velocities">The velocities, in user units per time base, at which each axis will be moving at the end of the time interval.</param>
<param name="time">The total time interval of the motion profile point in milliseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MovePvt(System.String[],System.Double[],System.Double[],System.Double)">
<summary>
Adds the MovePvt AeroScript command to the command queue.
Specifies a single point in an arbitrary motion profile. The point contains the position and velocity of one or more axes and a time interval. You must call this function for each point in the motion profile.
Executes on this command queue's task.
</summary>
<param name="axes">The axes of the motion profile point.</param>
<param name="positions">The positions of each axis at the end of the time interval.</param>
<param name="velocities">The velocities, in user units per time base, at which each axis will be moving at the end of the time interval.</param>
<param name="time">The total time interval of the motion profile point in milliseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.Int32,System.Double)">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.String,System.Double)">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.Int32[],System.Double[])">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.String[],System.Double[])">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.Int32,System.Double,System.Double)">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.String,System.Double,System.Double)">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.Int32[],System.Double[],System.Double[])">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.MoveRapid(System.String[],System.Double[],System.Double[])">
<summary>
Adds the MoveRapid AeroScript command to the command queue.
Executes a point-to-point rapid move on the specified axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetClear(System.Int32)">
<summary>
Adds the PositionOffsetClear AeroScript command to the command queue.
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetClear(System.String)">
<summary>
Adds the PositionOffsetClear AeroScript command to the command queue.
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetClear(System.Int32[])">
<summary>
Adds the PositionOffsetClear AeroScript command to the command queue.
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetClear(System.String[])">
<summary>
Adds the PositionOffsetClear AeroScript command to the command queue.
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetSet(System.Int32,System.Double)">
<summary>
Adds the PositionOffsetSet AeroScript command to the command queue.
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetSet(System.String,System.Double)">
<summary>
Adds the PositionOffsetSet AeroScript command to the command queue.
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetSet(System.Int32[],System.Double[])">
<summary>
Adds the PositionOffsetSet AeroScript command to the command queue.
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.PositionOffsetSet(System.String[],System.Double[])">
<summary>
Adds the PositionOffsetSet AeroScript command to the command queue.
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForInPosition(System.Int32)">
<summary>
Adds the WaitForInPosition AeroScript command to the command queue.
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForInPosition(System.String)">
<summary>
Adds the WaitForInPosition AeroScript command to the command queue.
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForInPosition(System.Int32[])">
<summary>
Adds the WaitForInPosition AeroScript command to the command queue.
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForInPosition(System.String[])">
<summary>
Adds the WaitForInPosition AeroScript command to the command queue.
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForMotionDone(System.Int32)">
<summary>
Adds the WaitForMotionDone AeroScript command to the command queue.
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForMotionDone(System.String)">
<summary>
Adds the WaitForMotionDone AeroScript command to the command queue.
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForMotionDone(System.Int32[])">
<summary>
Adds the WaitForMotionDone AeroScript command to the command queue.
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WaitForMotionDone(System.String[])">
<summary>
Adds the WaitForMotionDone AeroScript command to the command queue.
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.Int32[],System.Double[])">
<summary>
Adds the WorkOffsetConfigureOffset AeroScript command to the command queue.
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on this command queue's task.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.String[],System.Double[])">
<summary>
Adds the WorkOffsetConfigureOffset AeroScript command to the command queue.
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on this command queue's task.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetDisable(System.Int32[])">
<summary>
Adds the WorkOffsetDisable AeroScript command to the command queue.
Deactivates work offsets for all axes on the controller.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetDisable(System.String[])">
<summary>
Adds the WorkOffsetDisable AeroScript command to the command queue.
Deactivates work offsets for all axes on the controller.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetDisable">
<summary>
Adds the WorkOffsetDisable AeroScript command to the command queue.
Deactivates all active work offsets.
Executes on this command queue's task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetEnable(System.Int64)">
<summary>
Adds the WorkOffsetEnable AeroScript command to the command queue.
Activates the specified work offset and applies offsets to all configured axes.
Executes on this command queue's task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetEnable(System.Int64,System.Int32[])">
<summary>
Adds the WorkOffsetEnable AeroScript command to the command queue.
Activates the specified work offset and applies offsets to the specified axes.
Executes on this command queue's task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetEnable(System.Int64,System.String[])">
<summary>
Adds the WorkOffsetEnable AeroScript command to the command queue.
Activates the specified work offset and applies offsets to the specified axes.
Executes on this command queue's task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionCommands.WorkOffsetResetConfiguration">
<summary>
Adds the WorkOffsetResetConfiguration AeroScript command to the command queue.
Erases the work offset configurations on all axes. All work offsets must first be disabled.
Executes on this command queue's task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.Device">
<summary>
Gets a way to add Device commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotion">
<summary>
Gets a way to add AdvancedMotion commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuning">
<summary>
Gets a way to add ServoLoopTuning commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.Galvo">
<summary>
Gets a way to add Galvo commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetup">
<summary>
Gets a way to add MotionSetup commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZone">
<summary>
Gets a way to add SafeZone commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.Transformation">
<summary>
Gets a way to add Transformation commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.Calibration">
<summary>
Gets a way to add Calibration commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControl">
<summary>
Gets a way to add DriveAnalogControl commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.Autofocus">
<summary>
Gets a way to add Autofocus commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.Pso">
<summary>
Gets a way to add Pso commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.IO">
<summary>
Gets a way to add IO commands to a command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueCommands.Motion">
<summary>
Gets a way to add Motion commands to a command queue.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands">
<summary>
A class to add Device AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveBrakeOff(System.Int32)">
<summary>
Adds the DriveBrakeOff AeroScript command to the command queue.
Disengages the brake output and allows the axis to move freely.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveBrakeOff(System.String)">
<summary>
Adds the DriveBrakeOff AeroScript command to the command queue.
Disengages the brake output and allows the axis to move freely.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveBrakeOn(System.Int32)">
<summary>
Adds the DriveBrakeOn AeroScript command to the command queue.
Engages the brake output and prevents the axis from moving freely.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveBrakeOn(System.String)">
<summary>
Adds the DriveBrakeOn AeroScript command to the command queue.
Engages the brake output and prevents the axis from moving freely.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64)">
<summary>
Adds the DriveDataCaptureConfigureArray AeroScript command to the command queue.
Configures the drive array for drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64)">
<summary>
Adds the DriveDataCaptureConfigureArray AeroScript command to the command queue.
Configures the drive array for drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the DriveDataCaptureConfigureArray AeroScript command to the command queue.
Configures the drive array for drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the DriveDataCaptureConfigureArray AeroScript command to the command queue.
Configures the drive array for drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Adds the DriveDataCaptureConfigureInput AeroScript command to the command queue.
Selects the signal that will be stored by drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Adds the DriveDataCaptureConfigureInput AeroScript command to the command queue.
Selects the signal that will be stored by drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Adds the DriveDataCaptureConfigureInput AeroScript command to the command queue.
Selects the signal that will be stored by drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Adds the DriveDataCaptureConfigureInput AeroScript command to the command queue.
Selects the signal that will be stored by drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Adds the DriveDataCaptureConfigureTrigger AeroScript command to the command queue.
Selects the event that will trigger drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Adds the DriveDataCaptureConfigureTrigger AeroScript command to the command queue.
Selects the event that will trigger drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Adds the DriveDataCaptureConfigureTrigger AeroScript command to the command queue.
Selects the event that will trigger drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Adds the DriveDataCaptureConfigureTrigger AeroScript command to the command queue.
Selects the event that will trigger drive data capture.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOff(System.Int32)">
<summary>
Adds the DriveDataCaptureOff AeroScript command to the command queue.
Disables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOff(System.String)">
<summary>
Adds the DriveDataCaptureOff AeroScript command to the command queue.
Disables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOff(System.Int32,System.Int64)">
<summary>
Adds the DriveDataCaptureOff AeroScript command to the command queue.
Disables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOff(System.String,System.Int64)">
<summary>
Adds the DriveDataCaptureOff AeroScript command to the command queue.
Disables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOn(System.Int32)">
<summary>
Adds the DriveDataCaptureOn AeroScript command to the command queue.
Enables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOn(System.String)">
<summary>
Adds the DriveDataCaptureOn AeroScript command to the command queue.
Enables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOn(System.Int32,System.Int64)">
<summary>
Adds the DriveDataCaptureOn AeroScript command to the command queue.
Enables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureOn(System.String,System.Int64)">
<summary>
Adds the DriveDataCaptureOn AeroScript command to the command queue.
Enables drive data capture of configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureReset(System.Int32,System.Int64)">
<summary>
Adds the DriveDataCaptureReset AeroScript command to the command queue.
Resets drive data capture configuration.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveDataCaptureReset(System.String,System.Int64)">
<summary>
Adds the DriveDataCaptureReset AeroScript command to the command queue.
Resets drive data capture configuration.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Adds the DriveEncoderOutputConfigureDirection AeroScript command to the command queue.
Inverts the output signal of a specified channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Adds the DriveEncoderOutputConfigureDirection AeroScript command to the command queue.
Inverts the output signal of a specified channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Adds the DriveEncoderOutputConfigureDivider AeroScript command to the command queue.
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Adds the DriveEncoderOutputConfigureDivider AeroScript command to the command queue.
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputConfigureInput(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel)">
<summary>
Adds the DriveEncoderOutputConfigureInput AeroScript command to the command queue.
Configures an output channel to echo encoder signals from the specified input channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputConfigureInput(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel)">
<summary>
Adds the DriveEncoderOutputConfigureInput AeroScript command to the command queue.
Configures an output channel to echo encoder signals from the specified input channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputOff(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Adds the DriveEncoderOutputOff AeroScript command to the command queue.
Disables encoder output on the specified output channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputOff(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Adds the DriveEncoderOutputOff AeroScript command to the command queue.
Disables encoder output on the specified output channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Adds the DriveEncoderOutputOn AeroScript command to the command queue.
Enables encoder output on the specified output channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Adds the DriveEncoderOutputOn AeroScript command to the command queue.
Enables encoder output on the specified output channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode)">
<summary>
Adds the DriveEncoderOutputOn AeroScript command to the command queue.
Enables encoder output on the specified output channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode)">
<summary>
Adds the DriveEncoderOutputOn AeroScript command to the command queue.
Enables encoder output on the specified output channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[])">
<summary>
Adds the DrivePulseStreamConfigure AeroScript command to the command queue.
Configures pulse streaming mode.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[])">
<summary>
Adds the DrivePulseStreamConfigure AeroScript command to the command queue.
Configures pulse streaming mode.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode)">
<summary>
Adds the DrivePulseStreamConfigure AeroScript command to the command queue.
Configures pulse streaming mode.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode)">
<summary>
Adds the DrivePulseStreamConfigure AeroScript command to the command queue.
Configures pulse streaming mode.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamOff(System.Int32)">
<summary>
Adds the DrivePulseStreamOff AeroScript command to the command queue.
Disables pulse streaming mode on an axis.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamOff(System.String)">
<summary>
Adds the DrivePulseStreamOff AeroScript command to the command queue.
Disables pulse streaming mode on an axis.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamOn(System.Int32)">
<summary>
Adds the DrivePulseStreamOn AeroScript command to the command queue.
Enables pulse streaming mode on an axis.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DrivePulseStreamOn(System.String)">
<summary>
Adds the DrivePulseStreamOn AeroScript command to the command queue.
Enables pulse streaming mode on an axis.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetAuxiliaryFeedback(System.Int32,System.Double)">
<summary>
Adds the DriveSetAuxiliaryFeedback AeroScript command to the command queue.
Sets the auxiliary feedback of the axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetAuxiliaryFeedback(System.String,System.Double)">
<summary>
Adds the DriveSetAuxiliaryFeedback AeroScript command to the command queue.
Sets the auxiliary feedback of the axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetEncoderPosition(System.Int32,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double)">
<summary>
Adds the DriveSetEncoderPosition AeroScript command to the command queue.
Sets the hardware position counter of a drive encoder.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetEncoderPosition(System.String,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double)">
<summary>
Adds the DriveSetEncoderPosition AeroScript command to the command queue.
Sets the hardware position counter of a drive encoder.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionCommand(System.Int32,System.Double)">
<summary>
Adds the DriveSetPositionCommand AeroScript command to the command queue.
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionCommand(System.String,System.Double)">
<summary>
Adds the DriveSetPositionCommand AeroScript command to the command queue.
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionCommand(System.Int32[],System.Double[])">
<summary>
Adds the DriveSetPositionCommand AeroScript command to the command queue.
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionCommand(System.String[],System.Double[])">
<summary>
Adds the DriveSetPositionCommand AeroScript command to the command queue.
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionFeedback(System.Int32,System.Double)">
<summary>
Adds the DriveSetPositionFeedback AeroScript command to the command queue.
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionFeedback(System.String,System.Double)">
<summary>
Adds the DriveSetPositionFeedback AeroScript command to the command queue.
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionFeedback(System.Int32[],System.Double[])">
<summary>
Adds the DriveSetPositionFeedback AeroScript command to the command queue.
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DeviceCommands.DriveSetPositionFeedback(System.String[],System.Double[])">
<summary>
Adds the DriveSetPositionFeedback AeroScript command to the command queue.
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands">
<summary>
A class to add AdvancedMotion AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CammingFreeTable(System.Int64)">
<summary>
Adds the CammingFreeTable AeroScript command to the command queue.
Unloads a camming table from the SMC.
Executes on this command queue's task.
</summary>
<param name="tableNum">The camming table number to remove. This value must be greater than or equal to 0 and less than or equal to 99.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CammingLoadTableFromArray(System.Int64,System.Double[],System.Double[],System.Int64,Aerotech.Automation1.DotNet.CammingUnits,Aerotech.Automation1.DotNet.CammingInterpolation,Aerotech.Automation1.DotNet.CammingWrapping,System.Double)">
<summary>
Adds the CammingLoadTableFromArray AeroScript command to the command queue.
Loads a camming table into the SMC.
Executes on this command queue's task.
</summary>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99. Use this number when using the CammingOn() and CammingFreeTable() functions.</param>
<param name="leaderValues">Array of leader axis position values for the follower axis to track.</param>
<param name="followerValues">Array of follower axis positions or velocities to use.</param>
<param name="numValues">The number of values in the leaderValues and followerValues arrays.</param>
<param name="unitsMode">The units of the values in the camming table.</param>
<param name="interpolationMode">The interpolation type to use if the position of the leader axis is between two values in the table.</param>
<param name="wrapMode">Determines how a leader axis position value outside of the table is treated.</param>
<param name="tableOffset">An offset applied to all follower axis position or velocity values in the table.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CammingOff(System.Int32)">
<summary>
Adds the CammingOff AeroScript command to the command queue.
Disables camming on the specified follower axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CammingOff(System.String)">
<summary>
Adds the CammingOff AeroScript command to the command queue.
Disables camming on the specified follower axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CammingOn(System.Int32,System.Int32,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput)">
<summary>
Adds the CammingOn AeroScript command to the command queue.
Enables camming on the specified leader axis and follower axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CammingOn(System.String,System.String,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput)">
<summary>
Adds the CammingOn AeroScript command to the command queue.
Enables camming on the specified leader axis and follower axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CornerRoundingOff">
<summary>
Adds the CornerRoundingOff AeroScript command to the command queue.
Disables corner rounding.
Executes on this command queue's task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CornerRoundingOn">
<summary>
Adds the CornerRoundingOn AeroScript command to the command queue.
Enables corner rounding.
Executes on this command queue's task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CornerRoundingSetAxes(System.Int32[])">
<summary>
Adds the CornerRoundingSetAxes AeroScript command to the command queue.
Configures axes to use for corner rounding.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which corner rounding is done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CornerRoundingSetAxes(System.String[])">
<summary>
Adds the CornerRoundingSetAxes AeroScript command to the command queue.
Configures axes to use for corner rounding.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which corner rounding is done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CornerRoundingSetTolerance(System.Double)">
<summary>
Adds the CornerRoundingSetTolerance AeroScript command to the command queue.
Configures the tolerance to use for corner rounding.
Executes on this command queue's task.
</summary>
<param name="tolerance">The rounding tolerance, in user units.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CutterCompensationSetAxes(System.Int32[])">
<summary>
Adds the CutterCompensationSetAxes AeroScript command to the command queue.
Sets the axes to use in cutter offset and cutter radius compensation.
Executes on this command queue's task.
</summary>
<param name="cutterAxes">The axes to use. You must specify either 2 or 3 axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CutterCompensationSetAxes(System.String[])">
<summary>
Adds the CutterCompensationSetAxes AeroScript command to the command queue.
Sets the axes to use in cutter offset and cutter radius compensation.
Executes on this command queue's task.
</summary>
<param name="cutterAxes">The axes to use. You must specify either 2 or 3 axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CutterCompensationSetOffsets(System.Double[])">
<summary>
Adds the CutterCompensationSetOffsets AeroScript command to the command queue.
Sets the offsets to use in cutter offset compensation. The number of offsets that you specify must be the same as the number of axes specified to CutterCompensationSetAxes().
Executes on this command queue's task.
</summary>
<param name="cutterOffsets">The cutter offsets. You must specify either 2 or 3 offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.CutterCompensationSetRadius(System.Double)">
<summary>
Adds the CutterCompensationSetRadius AeroScript command to the command queue.
Sets the radius to use in cutter radius compensation.
Executes on this command queue's task.
</summary>
<param name="cutterRadius">The cutter radius.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingOff(System.Int32)">
<summary>
Adds the GearingOff AeroScript command to the command queue.
Disables gearing on an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingOff(System.String)">
<summary>
Adds the GearingOff AeroScript command to the command queue.
Disables gearing on an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingOn(System.Int32,Aerotech.Automation1.DotNet.GearingFilter)">
<summary>
Adds the GearingOn AeroScript command to the command queue.
Enables gearing on an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingOn(System.String,Aerotech.Automation1.DotNet.GearingFilter)">
<summary>
Adds the GearingOn AeroScript command to the command queue.
Enables gearing on an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingSetLeaderAxis(System.Int32,System.Int32,Aerotech.Automation1.DotNet.GearingSource)">
<summary>
Adds the GearingSetLeaderAxis AeroScript command to the command queue.
Configures gearing for an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingSetLeaderAxis(System.String,System.String,Aerotech.Automation1.DotNet.GearingSource)">
<summary>
Adds the GearingSetLeaderAxis AeroScript command to the command queue.
Configures gearing for an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingSetRatio(System.Int32,System.Double)">
<summary>
Adds the GearingSetRatio AeroScript command to the command queue.
Sets the gearing ratio for an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.GearingSetRatio(System.String,System.Double)">
<summary>
Adds the GearingSetRatio AeroScript command to the command queue.
Sets the gearing ratio for an axis.
Executes on this command queue's task.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.MoveOutOfLimit(System.Int32)">
<summary>
Adds the MoveOutOfLimit AeroScript command to the command queue.
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.MoveOutOfLimit(System.String)">
<summary>
Adds the MoveOutOfLimit AeroScript command to the command queue.
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.MoveToLimitCcw(System.Int32)">
<summary>
Adds the MoveToLimitCcw AeroScript command to the command queue.
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.MoveToLimitCcw(System.String)">
<summary>
Adds the MoveToLimitCcw AeroScript command to the command queue.
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.MoveToLimitCw(System.Int32)">
<summary>
Adds the MoveToLimitCw AeroScript command to the command queue.
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.MoveToLimitCw(System.String)">
<summary>
Adds the MoveToLimitCw AeroScript command to the command queue.
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.NormalcyOff">
<summary>
Adds the NormalcyOff AeroScript command to the command queue.
Disables normalcy mode.
Executes on this command queue's task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.NormalcyOn(Aerotech.Automation1.DotNet.NormalcyAlignment)">
<summary>
Adds the NormalcyOn AeroScript command to the command queue.
Enables normalcy mode.
Executes on this command queue's task.
</summary>
<param name="normalcyAlignment">The type of the normalcy mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.NormalcySetAxes(System.Int32,System.Int32[])">
<summary>
Adds the NormalcySetAxes AeroScript command to the command queue.
Configures the axes to use for normalcy mode.
Executes on this command queue's task.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.NormalcySetAxes(System.String,System.String[])">
<summary>
Adds the NormalcySetAxes AeroScript command to the command queue.
Configures the axes to use for normalcy mode.
Executes on this command queue's task.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.NormalcySetTolerance(System.Double)">
<summary>
Adds the NormalcySetTolerance AeroScript command to the command queue.
Configures the tolerance to use for normalcy mode.
Executes on this command queue's task.
</summary>
<param name="tolerance">The normalcy mode tolerance, in degrees.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.VelocityBlendingOff">
<summary>
Adds the VelocityBlendingOff AeroScript command to the command queue.
Disables velocity profiling mode.
Executes on this command queue's task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AdvancedMotionCommands.VelocityBlendingOn">
<summary>
Adds the VelocityBlendingOn AeroScript command to the command queue.
Enables velocity profiling mode.
Executes on this command queue's task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands">
<summary>
A class to add ServoLoopTuning AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.Int32,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[])">
<summary>
Adds the TuningSetFeedforwardGains AeroScript command to the command queue.
Sets the specified feedforward gain values on the specified axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.String,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[])">
<summary>
Adds the TuningSetFeedforwardGains AeroScript command to the command queue.
Sets the specified feedforward gain values on the specified axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetMotorAngle(System.Int32,System.Double,System.Double)">
<summary>
Adds the TuningSetMotorAngle AeroScript command to the command queue.
Generates an open-loop current command at a fixed electrical angle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetMotorAngle(System.String,System.Double,System.Double)">
<summary>
Adds the TuningSetMotorAngle AeroScript command to the command queue.
Generates an open-loop current command at a fixed electrical angle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double)">
<summary>
Adds the TuningSetMotorCurrent AeroScript command to the command queue.
Generates an open-loop current command at a rotating electrical angle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double)">
<summary>
Adds the TuningSetMotorCurrent AeroScript command to the command queue.
Generates an open-loop current command at a rotating electrical angle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double,System.Int64)">
<summary>
Adds the TuningSetMotorCurrent AeroScript command to the command queue.
Generates an open-loop current command at a rotating electrical angle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double,System.Int64)">
<summary>
Adds the TuningSetMotorCurrent AeroScript command to the command queue.
Generates an open-loop current command at a rotating electrical angle.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.Int32,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[])">
<summary>
Adds the TuningSetServoLoopGains AeroScript command to the command queue.
Sets the specified servo loop gain values on the specified axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.String,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[])">
<summary>
Adds the TuningSetServoLoopGains AeroScript command to the command queue.
Sets the specified servo loop gain values on the specified axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands">
<summary>
A class to add Galvo AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.Int32,System.Double)">
<summary>
Adds the GalvoConfigureLaser1PulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.String,System.Double)">
<summary>
Adds the GalvoConfigureLaser1PulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.Int32,System.Double)">
<summary>
Adds the GalvoConfigureLaser2PulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.String,System.Double)">
<summary>
Adds the GalvoConfigureLaser2PulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaserDelays(System.Int32,System.Double,System.Double)">
<summary>
Adds the GalvoConfigureLaserDelays AeroScript command to the command queue.
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaserDelays(System.String,System.Double,System.Double)">
<summary>
Adds the GalvoConfigureLaserDelays AeroScript command to the command queue.
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaserMode(System.Int32,System.Int64)">
<summary>
Adds the GalvoConfigureLaserMode AeroScript command to the command queue.
Specifies the mode in which the laser output signals operate.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaserMode(System.String,System.Int64)">
<summary>
Adds the GalvoConfigureLaserMode AeroScript command to the command queue.
Specifies the mode in which the laser output signals operate.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.Int32,System.Double)">
<summary>
Adds the GalvoConfigureLaserOutputPeriod AeroScript command to the command queue.
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.String,System.Double)">
<summary>
Adds the GalvoConfigureLaserOutputPeriod AeroScript command to the command queue.
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureStandbyPeriod(System.Int32,System.Double)">
<summary>
Adds the GalvoConfigureStandbyPeriod AeroScript command to the command queue.
Specifies the period, in microseconds, of the standby signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureStandbyPeriod(System.String,System.Double)">
<summary>
Adds the GalvoConfigureStandbyPeriod AeroScript command to the command queue.
Specifies the period, in microseconds, of the standby signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.Int32,System.Double)">
<summary>
Adds the GalvoConfigureStandbyPulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the standby signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.String,System.Double)">
<summary>
Adds the GalvoConfigureStandbyPulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the standby signals.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.Int32,System.Double)">
<summary>
Adds the GalvoConfigureSuppressionPulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.String,System.Double)">
<summary>
Adds the GalvoConfigureSuppressionPulseWidth AeroScript command to the command queue.
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoEncoderScaleFactorSet(System.Int32,System.Double)">
<summary>
Adds the GalvoEncoderScaleFactorSet AeroScript command to the command queue.
Enables "marking on the fly" functionality.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoEncoderScaleFactorSet(System.String,System.Double)">
<summary>
Adds the GalvoEncoderScaleFactorSet AeroScript command to the command queue.
Enables "marking on the fly" functionality.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoLaserOutput(System.Int32,Aerotech.Automation1.DotNet.GalvoLaser)">
<summary>
Adds the GalvoLaserOutput AeroScript command to the command queue.
Specifies how the laser on a galvo axis is controlled.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoLaserOutput(System.String,Aerotech.Automation1.DotNet.GalvoLaser)">
<summary>
Adds the GalvoLaserOutput AeroScript command to the command queue.
Specifies how the laser on a galvo axis is controlled.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoProjectionOff(System.Int32)">
<summary>
Adds the GalvoProjectionOff AeroScript command to the command queue.
Disables the projective transformation on galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoProjectionOff(System.String)">
<summary>
Adds the GalvoProjectionOff AeroScript command to the command queue.
Disables the projective transformation on galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoProjectionOn(System.Int32)">
<summary>
Adds the GalvoProjectionOn AeroScript command to the command queue.
Enables the projective transformation on galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoProjectionOn(System.String)">
<summary>
Adds the GalvoProjectionOn AeroScript command to the command queue.
Enables the projective transformation on galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoProjectionSetCoefficients(System.Int32,System.Double[])">
<summary>
Adds the GalvoProjectionSetCoefficients AeroScript command to the command queue.
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoProjectionSetCoefficients(System.String,System.Double[])">
<summary>
Adds the GalvoProjectionSetCoefficients AeroScript command to the command queue.
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoRotationSet(System.Int32,System.Double)">
<summary>
Adds the GalvoRotationSet AeroScript command to the command queue.
Specifies an angle of rotation that is applied to galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoRotationSet(System.String,System.Double)">
<summary>
Adds the GalvoRotationSet AeroScript command to the command queue.
Specifies an angle of rotation that is applied to galvo axes.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoWobbleOff(System.Int32)">
<summary>
Adds the GalvoWobbleOff AeroScript command to the command queue.
Disables the galvo wobble feature.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoWobbleOff(System.String)">
<summary>
Adds the GalvoWobbleOff AeroScript command to the command queue.
Disables the galvo wobble feature.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoWobbleOn(System.Int32)">
<summary>
Adds the GalvoWobbleOn AeroScript command to the command queue.
Enables the galvo wobble feature.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoWobbleOn(System.String)">
<summary>
Adds the GalvoWobbleOn AeroScript command to the command queue.
Enables the galvo wobble feature.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoWobbleSetConfiguration(System.Int32,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType)">
<summary>
Adds the GalvoWobbleSetConfiguration AeroScript command to the command queue.
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.GalvoWobbleSetConfiguration(System.String,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType)">
<summary>
Adds the GalvoWobbleSetConfiguration AeroScript command to the command queue.
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on this command queue's task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovOff">
<summary>
Adds the IfovOff AeroScript command to the command queue.
Disables Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovOn">
<summary>
Adds the IfovOn AeroScript command to the command queue.
Enables Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[])">
<summary>
Adds the IfovSetAxisPairs AeroScript command to the command queue.
Configures axes to command in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[])">
<summary>
Adds the IfovSetAxisPairs AeroScript command to the command queue.
Configures axes to command in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[],System.Double,System.Double)">
<summary>
Adds the IfovSetAxisPairs AeroScript command to the command queue.
Configures axes to command in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[],System.Double,System.Double)">
<summary>
Adds the IfovSetAxisPairs AeroScript command to the command queue.
Configures axes to command in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetSize(System.Double)">
<summary>
Adds the IfovSetSize AeroScript command to the command queue.
Configures the field of view size of the galvo head in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="size">The field of view size, in user units, of the galvo head.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetSyncAxes(System.Int32[])">
<summary>
Adds the IfovSetSyncAxes AeroScript command to the command queue.
Configures more axes to command in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetSyncAxes(System.String[])">
<summary>
Adds the IfovSetSyncAxes AeroScript command to the command queue.
Configures more axes to command in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetTime(System.Int64)">
<summary>
Adds the IfovSetTime AeroScript command to the command queue.
Configures the maximum search time that the controller looks ahead in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="time">The time, in milliseconds, that the controller looks ahead.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetTrackingAcceleration(System.Double)">
<summary>
Adds the IfovSetTrackingAcceleration AeroScript command to the command queue.
Configures the maximum acceleration of the servo axes while in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="acceleration">The maximum acceleration, in user units/second squared, of the servo axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.GalvoCommands.IfovSetTrackingSpeed(System.Double)">
<summary>
Adds the IfovSetTrackingSpeed AeroScript command to the command queue.
Configures the maximum speed of the servo axes while in Infinite Field of View (IFOV).
Executes on this command queue's task.
</summary>
<param name="speed">The maximum speed, in user units/time base, of the servo axes.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands">
<summary>
A class to add MotionSetup AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupAxisRampType AeroScript command to the command queue.
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupAxisRampValue AeroScript command to the command queue.
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisSpeed(System.Int32,System.Double)">
<summary>
Adds the SetupAxisSpeed AeroScript command to the command queue.
Sets the speed of an axis for MoveRapid() motion.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisSpeed(System.String,System.Double)">
<summary>
Adds the SetupAxisSpeed AeroScript command to the command queue.
Sets the speed of an axis for MoveRapid() motion.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisSpeed(System.Int32[],System.Double[])">
<summary>
Adds the SetupAxisSpeed AeroScript command to the command queue.
Sets the speeds of axes for MoveRapid() motion.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupAxisSpeed(System.String[],System.Double[])">
<summary>
Adds the SetupAxisSpeed AeroScript command to the command queue.
Sets the speeds of axes for MoveRapid() motion.
Executes on this command queue's task.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupCoordinatedAccelLimit(System.Double,System.Double)">
<summary>
Adds the SetupCoordinatedAccelLimit AeroScript command to the command queue.
Sets the maximum acceleration of coordinated motion on dominant axes on the current task.
Executes on this command queue's task.
</summary>
<param name="accelLimitNonTangent">The maximum acceleration of axes at non-tangent portions of a motion path.</param>
<param name="accelLimitCircular">The maximum acceleration of axes at curved parts of a motion path.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType)">
<summary>
Adds the SetupCoordinatedRampType AeroScript command to the command queue.
Sets a coordinated ramp type for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on this command queue's task.
</summary>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupCoordinatedRampType AeroScript command to the command queue.
Sets a coordinated ramp type along with a ramp type value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on this command queue's task.
</summary>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Adds the SetupCoordinatedRampType AeroScript command to the command queue.
Sets a coordinated ramp type along with a ramp type value for accelerations and decelerations separately for dominant axes on the current task.
Executes on this command queue's task.
</summary>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupCoordinatedRampValue AeroScript command to the command queue.
Sets a coordinated ramp value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on this command queue's task.
</summary>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Adds the SetupCoordinatedRampValue AeroScript command to the command queue.
Sets a coordinated ramp value for accelerations and decelerations separately for dominant axes on the current task.
Executes on this command queue's task.
</summary>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupCoordinatedSpeed(System.Double)">
<summary>
Adds the SetupCoordinatedSpeed AeroScript command to the command queue.
Sets the coordinated speed for dominant axes on the current task.
Executes on this command queue's task.
</summary>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupDependentCoordinatedAccelLimit(System.Double)">
<summary>
Adds the SetupDependentCoordinatedAccelLimit AeroScript command to the command queue.
Sets the maximum acceleration of coordinated motion on dependent axes on the current task.
Executes on this command queue's task.
</summary>
<param name="accelLimitDependent">The maximum acceleration of axes at all portions of a motion path.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double)">
<summary>
Adds the SetupDependentCoordinatedRampRate AeroScript command to the command queue.
Sets a coordinated ramp rate for both accelerations and decelerations simultaneously for dependent axes on the current task.
Executes on this command queue's task.
</summary>
<param name="rampValue">The ramp rate value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double,System.Double)">
<summary>
Adds the SetupDependentCoordinatedRampRate AeroScript command to the command queue.
Sets a coordinated ramp rate for accelerations and decelerations separately for dependent axes on the current task.
Executes on this command queue's task.
</summary>
<param name="rampValueAccel">The ramp rate value to set during accelerations.</param>
<param name="rampValueDecel">The ramp rate value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupDependentCoordinatedSpeed(System.Double)">
<summary>
Adds the SetupDependentCoordinatedSpeed AeroScript command to the command queue.
Sets the coordinated speed for dependent axes on the current task.
Executes on this command queue's task.
</summary>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupTaskDistanceUnits(Aerotech.Automation1.DotNet.DistanceUnits)">
<summary>
Adds the SetupTaskDistanceUnits AeroScript command to the command queue.
Sets the distance units of the current task.
Executes on this command queue's task.
</summary>
<param name="distanceUnits">The distance units to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupTaskTargetMode(Aerotech.Automation1.DotNet.TargetMode)">
<summary>
Adds the SetupTaskTargetMode AeroScript command to the command queue.
Sets the target mode of the current task.
Executes on this command queue's task.
</summary>
<param name="targetMode">The target mode to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupTaskTimeUnits(Aerotech.Automation1.DotNet.TimeUnits)">
<summary>
Adds the SetupTaskTimeUnits AeroScript command to the command queue.
Sets the time units of the current task.
Executes on this command queue's task.
</summary>
<param name="timeUnits">The time units to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.MotionSetupCommands.SetupTaskWaitMode(Aerotech.Automation1.DotNet.WaitMode)">
<summary>
Adds the SetupTaskWaitMode AeroScript command to the command queue.
Sets the wait mode of the current task.
Executes on this command queue's task.
</summary>
<param name="waitMode">The wait mode to set.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands">
<summary>
A class to add SafeZone AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.Int32,System.Double,System.Double)">
<summary>
Adds the SafeZoneBoundaryAdd AeroScript command to the command queue.
Adds a boundary to the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.String,System.Double,System.Double)">
<summary>
Adds the SafeZoneBoundaryAdd AeroScript command to the command queue.
Adds a boundary to the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.Int32)">
<summary>
Adds the SafeZoneBoundaryRemove AeroScript command to the command queue.
Removes the specified boundary from the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.String)">
<summary>
Adds the SafeZoneBoundaryRemove AeroScript command to the command queue.
Removes the specified boundary from the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneBoundaryRemoveAll(System.Int64)">
<summary>
Adds the SafeZoneBoundaryRemoveAll AeroScript command to the command queue.
Removes all boundaries from the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The index of the safe zone on which to remove all boundaries.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneOff(System.Int64)">
<summary>
Adds the SafeZoneOff AeroScript command to the command queue.
Disables the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The safe zone to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneOn(System.Int64)">
<summary>
Adds the SafeZoneOn AeroScript command to the command queue.
Enables the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The safe zone to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.SafeZoneCommands.SafeZoneSetType(System.Int64,Aerotech.Automation1.DotNet.SafeZoneType)">
<summary>
Adds the SafeZoneSetType AeroScript command to the command queue.
Sets the safe zone type for the specified safe zone.
Executes on this command queue's task.
</summary>
<param name="zone">The safe zone on which to set the safe zone type.</param>
<param name="zoneType">The safe zone type to set.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands">
<summary>
A class to add Transformation AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationDisable(System.String)">
<summary>
Adds the CTransformationDisable AeroScript command to the command queue.
Disable a C transformation. This will stop running inverse and forward computations for this transformation.
Executes on this command queue's task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationDisable(System.String[])">
<summary>
Adds the CTransformationDisable AeroScript command to the command queue.
Disable multiple C transformations simultaneously. This will stop running inverse and forward computations for the specified transformations.
Executes on this command queue's task.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationEnable(System.String)">
<summary>
Adds the CTransformationEnable AeroScript command to the command queue.
Enable a C transformation. This will begin running inverse and forward computations for the specified transformation. All axes part of the transformation must be enabled at any time the transformation is enabled. If the transformation is enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformation.
Executes on this command queue's task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationEnable(System.String[])">
<summary>
Adds the CTransformationEnable AeroScript command to the command queue.
Enable multiple C transformations simultaneously. This will begin running inverse and forward computations for the specified transformations. All axes part of the transformations must be enabled at any time the transformations are enabled. If the transformations are enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformations.
Executes on this command queue's task.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationSetInputAxes(System.String,System.Int32[])">
<summary>
Adds the CTransformationSetInputAxes AeroScript command to the command queue.
Set the input axes of a C transformation.
Executes on this command queue's task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationSetInputAxes(System.String,System.String[])">
<summary>
Adds the CTransformationSetInputAxes AeroScript command to the command queue.
Set the input axes of a C transformation.
Executes on this command queue's task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.Int32[])">
<summary>
Adds the CTransformationSetOutputAxes AeroScript command to the command queue.
Set the output axes of a C transformation.
Executes on this command queue's task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.String[])">
<summary>
Adds the CTransformationSetOutputAxes AeroScript command to the command queue.
Set the output axes of a C transformation.
Executes on this command queue's task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.TransformationCommands.CTransformationSetProperty(System.String,System.String,System.Double)">
<summary>
Adds the CTransformationSetProperty AeroScript command to the command queue.
Call the OnSetProperty() C function defined in a C transformation.
Executes on this command queue's task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="property">The property argument provided to the OnSetProperty() C function.</param>
<param name="value">The value argument provided to the OnSetProperty() C function.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.CalibrationCommands">
<summary>
A class to add Calibration AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.CalibrationCommands.CalibrationLoad(Aerotech.Automation1.DotNet.CalibrationType,System.String)">
<summary>
Adds the CalibrationLoad AeroScript command to the command queue.
Loads and activates the specified axis calibration file or galvo power correction file.
Executes on this command queue's task.
</summary>
<param name="calibrationType">The type of calibration that the specified file represents.</param>
<param name="controllerFileName">The path to the file to be loaded as a calibration file.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.CalibrationCommands.CalibrationUnload(Aerotech.Automation1.DotNet.CalibrationType)">
<summary>
Adds the CalibrationUnload AeroScript command to the command queue.
Deactivates and unloads the calibration for the specified calibration type.
Executes on this command queue's task.
</summary>
<param name="calibrationType">The type of calibration to be unloaded.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands">
<summary>
A class to add DriveAnalogControl AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogAccelerationFeedforwardConfigureInput AeroScript command to the command queue.
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogAccelerationFeedforwardConfigureInput AeroScript command to the command queue.
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.Int32)">
<summary>
Adds the DriveAnalogAccelerationFeedforwardOff AeroScript command to the command queue.
Disables the Drive Analog Acceleration Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.String)">
<summary>
Adds the DriveAnalogAccelerationFeedforwardOff AeroScript command to the command queue.
Disables the Drive Analog Acceleration Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.Int32)">
<summary>
Adds the DriveAnalogAccelerationFeedforwardOn AeroScript command to the command queue.
Enables the Drive Analog Acceleration Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.String)">
<summary>
Adds the DriveAnalogAccelerationFeedforwardOn AeroScript command to the command queue.
Enables the Drive Analog Acceleration Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogCurrentControlConfigureInput AeroScript command to the command queue.
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogCurrentControlConfigureInput AeroScript command to the command queue.
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.Int32)">
<summary>
Adds the DriveAnalogCurrentControlOff AeroScript command to the command queue.
Disables the Drive Analog Current Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.String)">
<summary>
Adds the DriveAnalogCurrentControlOff AeroScript command to the command queue.
Disables the Drive Analog Current Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.Int32)">
<summary>
Adds the DriveAnalogCurrentControlOn AeroScript command to the command queue.
Enables the Drive Analog Current Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.String)">
<summary>
Adds the DriveAnalogCurrentControlOn AeroScript command to the command queue.
Enables the Drive Analog Current Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.Int32,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogPositionControlConfigureInput AeroScript command to the command queue.
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.String,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogPositionControlConfigureInput AeroScript command to the command queue.
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.Int32,System.Double)">
<summary>
Adds the DriveAnalogPositionControlConfigureSpeedClamp AeroScript command to the command queue.
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.String,System.Double)">
<summary>
Adds the DriveAnalogPositionControlConfigureSpeedClamp AeroScript command to the command queue.
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.Int32)">
<summary>
Adds the DriveAnalogPositionControlOff AeroScript command to the command queue.
Disable the Drive Analog Position Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.String)">
<summary>
Adds the DriveAnalogPositionControlOff AeroScript command to the command queue.
Disable the Drive Analog Position Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.Int32)">
<summary>
Adds the DriveAnalogPositionControlOn AeroScript command to the command queue.
Enable the Drive Analog Position Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.String)">
<summary>
Adds the DriveAnalogPositionControlOn AeroScript command to the command queue.
Enable the Drive Analog Position Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogVelocityControlConfigureInput AeroScript command to the command queue.
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogVelocityControlConfigureInput AeroScript command to the command queue.
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.Int32)">
<summary>
Adds the DriveAnalogVelocityControlOff AeroScript command to the command queue.
Disables the Drive Analog Velocity Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.String)">
<summary>
Adds the DriveAnalogVelocityControlOff AeroScript command to the command queue.
Disables the Drive Analog Velocity Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.Int32)">
<summary>
Adds the DriveAnalogVelocityControlOn AeroScript command to the command queue.
Enables the Drive Analog Velocity Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.String)">
<summary>
Adds the DriveAnalogVelocityControlOn AeroScript command to the command queue.
Enables the Drive Analog Velocity Control feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogVelocityFeedforwardConfigureInput AeroScript command to the command queue.
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double)">
<summary>
Adds the DriveAnalogVelocityFeedforwardConfigureInput AeroScript command to the command queue.
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.Int32)">
<summary>
Adds the DriveAnalogVelocityFeedforwardOff AeroScript command to the command queue.
Disables the Drive Analog Velocity Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.String)">
<summary>
Adds the DriveAnalogVelocityFeedforwardOff AeroScript command to the command queue.
Disables the Drive Analog Velocity Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.Int32)">
<summary>
Adds the DriveAnalogVelocityFeedforwardOn AeroScript command to the command queue.
Enables the Drive Analog Velocity Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.String)">
<summary>
Adds the DriveAnalogVelocityFeedforwardOn AeroScript command to the command queue.
Enables the Drive Analog Velocity Feedforward feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.AutofocusCommands">
<summary>
A class to add Autofocus AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AutofocusCommands.AutofocusOff(System.Int32)">
<summary>
Adds the AutofocusOff AeroScript command to the command queue.
Disables autofocus on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AutofocusCommands.AutofocusOff(System.String)">
<summary>
Adds the AutofocusOff AeroScript command to the command queue.
Disables autofocus on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AutofocusCommands.AutofocusOn(System.Int32,Aerotech.Automation1.DotNet.AutofocusFocusMode)">
<summary>
Adds the AutofocusOn AeroScript command to the command queue.
Enables autofocus on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.AutofocusCommands.AutofocusOn(System.String,Aerotech.Automation1.DotNet.AutofocusFocusMode)">
<summary>
Adds the AutofocusOn AeroScript command to the command queue.
Enables autofocus on an axis.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands">
<summary>
A class to add Pso AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoBitmapConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoBitmapConfigureArray AeroScript command to the command queue.
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoBitmapConfigureArray(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoBitmapConfigureArray AeroScript command to the command queue.
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection)">
<summary>
Adds the PsoDistanceConfigureAllowedEventDirection AeroScript command to the command queue.
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.String,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection)">
<summary>
Adds the PsoDistanceConfigureAllowedEventDirection AeroScript command to the command queue.
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureArrayDistances(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoDistanceConfigureArrayDistances AeroScript command to the command queue.
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureArrayDistances(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoDistanceConfigureArrayDistances AeroScript command to the command queue.
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureCounterReset(System.Int32,System.Int64)">
<summary>
Adds the PsoDistanceConfigureCounterReset AeroScript command to the command queue.
Configures the conditions which will reset the PSO distance counters.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureCounterReset(System.String,System.Int64)">
<summary>
Adds the PsoDistanceConfigureCounterReset AeroScript command to the command queue.
Configures the conditions which will reset the PSO distance counters.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureFixedDistance(System.Int32,System.Int64)">
<summary>
Adds the PsoDistanceConfigureFixedDistance AeroScript command to the command queue.
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureFixedDistance(System.String,System.Int64)">
<summary>
Adds the PsoDistanceConfigureFixedDistance AeroScript command to the command queue.
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureInputs(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceInput[])">
<summary>
Adds the PsoDistanceConfigureInputs AeroScript command to the command queue.
Selects the source of each PSO distance counter.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureInputs(System.String,Aerotech.Automation1.DotNet.PsoDistanceInput[])">
<summary>
Adds the PsoDistanceConfigureInputs AeroScript command to the command queue.
Selects the source of each PSO distance counter.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureScaling(System.Int32,System.Int64[])">
<summary>
Adds the PsoDistanceConfigureScaling AeroScript command to the command queue.
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceConfigureScaling(System.String,System.Int64[])">
<summary>
Adds the PsoDistanceConfigureScaling AeroScript command to the command queue.
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceCounterOff(System.Int32)">
<summary>
Adds the PsoDistanceCounterOff AeroScript command to the command queue.
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceCounterOff(System.String)">
<summary>
Adds the PsoDistanceCounterOff AeroScript command to the command queue.
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceCounterOn(System.Int32)">
<summary>
Adds the PsoDistanceCounterOn AeroScript command to the command queue.
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceCounterOn(System.String)">
<summary>
Adds the PsoDistanceCounterOn AeroScript command to the command queue.
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceEventsOff(System.Int32)">
<summary>
Adds the PsoDistanceEventsOff AeroScript command to the command queue.
Disables PSO distance events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceEventsOff(System.String)">
<summary>
Adds the PsoDistanceEventsOff AeroScript command to the command queue.
Disables PSO distance events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceEventsOn(System.Int32)">
<summary>
Adds the PsoDistanceEventsOn AeroScript command to the command queue.
Enables PSO distance events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoDistanceEventsOn(System.String)">
<summary>
Adds the PsoDistanceEventsOn AeroScript command to the command queue.
Enables PSO distance events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventConfigureMask(System.Int32,System.Int64)">
<summary>
Adds the PsoEventConfigureMask AeroScript command to the command queue.
Configures additional conditions to prevent PSO events from occurring.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventConfigureMask(System.String,System.Int64)">
<summary>
Adds the PsoEventConfigureMask AeroScript command to the command queue.
Configures additional conditions to prevent PSO events from occurring.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventContinuousOff(System.Int32)">
<summary>
Adds the PsoEventContinuousOff AeroScript command to the command queue.
Immediately halts active continuous PSO events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to halt the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventContinuousOff(System.String)">
<summary>
Adds the PsoEventContinuousOff AeroScript command to the command queue.
Immediately halts active continuous PSO events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to halt the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventContinuousOn(System.Int32)">
<summary>
Adds the PsoEventContinuousOn AeroScript command to the command queue.
Immediately causes continuous PSO events to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to cause the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventContinuousOn(System.String)">
<summary>
Adds the PsoEventContinuousOn AeroScript command to the command queue.
Immediately causes continuous PSO events to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to cause the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventGenerateSingle(System.Int32)">
<summary>
Adds the PsoEventGenerateSingle AeroScript command to the command queue.
Immediately causes a single PSO event to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to cause the event.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoEventGenerateSingle(System.String)">
<summary>
Adds the PsoEventGenerateSingle AeroScript command to the command queue.
Immediately causes a single PSO event to occur.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to cause the event.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoLaserEventsOff(System.Int32)">
<summary>
Adds the PsoLaserEventsOff AeroScript command to the command queue.
Disables PSO laser events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoLaserEventsOff(System.String)">
<summary>
Adds the PsoLaserEventsOff AeroScript command to the command queue.
Disables PSO laser events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoLaserEventsOn(System.Int32)">
<summary>
Adds the PsoLaserEventsOn AeroScript command to the command queue.
Configures the PSO to generate an event when the laser command bit turns on.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoLaserEventsOn(System.String)">
<summary>
Adds the PsoLaserEventsOn AeroScript command to the command queue.
Configures the PSO to generate an event when the laser command bit turns on.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputConfigureOutput(System.Int32,Aerotech.Automation1.DotNet.PsoOutputPin)">
<summary>
Adds the PsoOutputConfigureOutput AeroScript command to the command queue.
Selects the output pin on which to drive the PSO output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputConfigureOutput(System.String,Aerotech.Automation1.DotNet.PsoOutputPin)">
<summary>
Adds the PsoOutputConfigureOutput AeroScript command to the command queue.
Selects the output pin on which to drive the PSO output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputConfigureSource(System.Int32,Aerotech.Automation1.DotNet.PsoOutputSource)">
<summary>
Adds the PsoOutputConfigureSource AeroScript command to the command queue.
Selects which internal PSO signal to drive onto the output pin.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputConfigureSource(System.String,Aerotech.Automation1.DotNet.PsoOutputSource)">
<summary>
Adds the PsoOutputConfigureSource AeroScript command to the command queue.
Selects which internal PSO signal to drive onto the output pin.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputOff(System.Int32)">
<summary>
Adds the PsoOutputOff AeroScript command to the command queue.
Immediately deactivates the PSO output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputOff(System.String)">
<summary>
Adds the PsoOutputOff AeroScript command to the command queue.
Immediately deactivates the PSO output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputOn(System.Int32)">
<summary>
Adds the PsoOutputOn AeroScript command to the command queue.
Immediately activates the PSO output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoOutputOn(System.String)">
<summary>
Adds the PsoOutputOn AeroScript command to the command queue.
Immediately activates the PSO output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoReset(System.Int32)">
<summary>
Adds the PsoReset AeroScript command to the command queue.
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoReset(System.String)">
<summary>
Adds the PsoReset AeroScript command to the command queue.
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoTransformationConfigure(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction)">
<summary>
Adds the PsoTransformationConfigure AeroScript command to the command queue.
Configures a PSO input transformation channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoTransformationConfigure(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction)">
<summary>
Adds the PsoTransformationConfigure AeroScript command to the command queue.
Configures a PSO input transformation channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoTransformationOff(System.Int32,System.Int64)">
<summary>
Adds the PsoTransformationOff AeroScript command to the command queue.
Disables a PSO input transformation channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoTransformationOff(System.String,System.Int64)">
<summary>
Adds the PsoTransformationOff AeroScript command to the command queue.
Disables a PSO input transformation channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoTransformationOn(System.Int32,System.Int64)">
<summary>
Adds the PsoTransformationOn AeroScript command to the command queue.
Enables a PSO input transformation channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoTransformationOn(System.String,System.Int64)">
<summary>
Adds the PsoTransformationOn AeroScript command to the command queue.
Enables a PSO input transformation channel.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.Int32)">
<summary>
Adds the PsoWaveformApplyPulseConfiguration AeroScript command to the command queue.
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.String)">
<summary>
Adds the PsoWaveformApplyPulseConfiguration AeroScript command to the command queue.
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.Int32)">
<summary>
Adds the PsoWaveformApplyPwmConfiguration AeroScript command to the command queue.
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.String)">
<summary>
Adds the PsoWaveformApplyPwmConfiguration AeroScript command to the command queue.
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigureDelay(System.Int32,System.Double)">
<summary>
Adds the PsoWaveformConfigureDelay AeroScript command to the command queue.
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigureDelay(System.String,System.Double)">
<summary>
Adds the PsoWaveformConfigureDelay AeroScript command to the command queue.
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigureMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformMode)">
<summary>
Adds the PsoWaveformConfigureMode AeroScript command to the command queue.
Selects the output mode of the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigureMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformMode)">
<summary>
Adds the PsoWaveformConfigureMode AeroScript command to the command queue.
Selects the output mode of the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseArrayCounts AeroScript command to the command queue.
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseArrayCounts AeroScript command to the command queue.
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseArrayOnTimes AeroScript command to the command queue.
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseArrayOnTimes AeroScript command to the command queue.
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseArrayTotalTimes AeroScript command to the command queue.
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseArrayTotalTimes AeroScript command to the command queue.
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.Int32,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseEventQueue AeroScript command to the command queue.
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.String,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseEventQueue AeroScript command to the command queue.
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.Int32,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseFixedCount AeroScript command to the command queue.
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.String,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseFixedCount AeroScript command to the command queue.
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.Int32,System.Double)">
<summary>
Adds the PsoWaveformConfigurePulseFixedOnTime AeroScript command to the command queue.
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.String,System.Double)">
<summary>
Adds the PsoWaveformConfigurePulseFixedOnTime AeroScript command to the command queue.
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.Int32,System.Double)">
<summary>
Adds the PsoWaveformConfigurePulseFixedTotalTime AeroScript command to the command queue.
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.String,System.Double)">
<summary>
Adds the PsoWaveformConfigurePulseFixedTotalTime AeroScript command to the command queue.
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseMask(System.Int32,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseMask AeroScript command to the command queue.
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseMask(System.String,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseMask AeroScript command to the command queue.
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.Int32,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseTruncation AeroScript command to the command queue.
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.String,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePulseTruncation AeroScript command to the command queue.
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePwmOnTimes AeroScript command to the command queue.
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWaveformConfigurePwmOnTimes AeroScript command to the command queue.
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.Int32,System.Double)">
<summary>
Adds the PsoWaveformConfigurePwmTotalTime AeroScript command to the command queue.
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.String,System.Double)">
<summary>
Adds the PsoWaveformConfigurePwmTotalTime AeroScript command to the command queue.
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode)">
<summary>
Adds the PsoWaveformExternalSyncConfigureDelayMode AeroScript command to the command queue.
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode)">
<summary>
Adds the PsoWaveformExternalSyncConfigureDelayMode AeroScript command to the command queue.
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformExternalSyncOff(System.Int32)">
<summary>
Adds the PsoWaveformExternalSyncOff AeroScript command to the command queue.
Disables the external sync option for the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformExternalSyncOff(System.String)">
<summary>
Adds the PsoWaveformExternalSyncOff AeroScript command to the command queue.
Disables the external sync option for the waveform module.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformExternalSyncOn(System.Int32)">
<summary>
Adds the PsoWaveformExternalSyncOn AeroScript command to the command queue.
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformExternalSyncOn(System.String)">
<summary>
Adds the PsoWaveformExternalSyncOn AeroScript command to the command queue.
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformOff(System.Int32)">
<summary>
Adds the PsoWaveformOff AeroScript command to the command queue.
Disables the waveform module, preventing PSO events from triggering it.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformOff(System.String)">
<summary>
Adds the PsoWaveformOff AeroScript command to the command queue.
Disables the waveform module, preventing PSO events from triggering it.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformOn(System.Int32)">
<summary>
Adds the PsoWaveformOn AeroScript command to the command queue.
Enables the waveform module, allowing PSO events to trigger it.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformOn(System.String)">
<summary>
Adds the PsoWaveformOn AeroScript command to the command queue.
Enables the waveform module, allowing PSO events to trigger it.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformScalingConfigure(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[])">
<summary>
Adds the PsoWaveformScalingConfigure AeroScript command to the command queue.
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformScalingConfigure(System.String,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[])">
<summary>
Adds the PsoWaveformScalingConfigure AeroScript command to the command queue.
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformScalingOff(System.Int32)">
<summary>
Adds the PsoWaveformScalingOff AeroScript command to the command queue.
Deactivates PSO waveform scaling.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformScalingOff(System.String)">
<summary>
Adds the PsoWaveformScalingOff AeroScript command to the command queue.
Deactivates PSO waveform scaling.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformScalingOn(System.Int32)">
<summary>
Adds the PsoWaveformScalingOn AeroScript command to the command queue.
Activates PSO waveform scaling.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWaveformScalingOn(System.String)">
<summary>
Adds the PsoWaveformScalingOn AeroScript command to the command queue.
Activates PSO waveform scaling.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureArrayRanges(System.Int32,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWindowConfigureArrayRanges AeroScript command to the command queue.
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureArrayRanges(System.String,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWindowConfigureArrayRanges AeroScript command to the command queue.
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection)">
<summary>
Adds the PsoWindowConfigureArrayUpdateDirection AeroScript command to the command queue.
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection)">
<summary>
Adds the PsoWindowConfigureArrayUpdateDirection AeroScript command to the command queue.
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureCounterReset(System.Int32,System.Int64)">
<summary>
Adds the PsoWindowConfigureCounterReset AeroScript command to the command queue.
Configures the conditions which will reset the PSO window counters.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureCounterReset(System.String,System.Int64)">
<summary>
Adds the PsoWindowConfigureCounterReset AeroScript command to the command queue.
Configures the conditions which will reset the PSO window counters.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureEvents(System.Int32,Aerotech.Automation1.DotNet.PsoWindowEventMode)">
<summary>
Adds the PsoWindowConfigureEvents AeroScript command to the command queue.
Configures the conditions which will generate PSO window events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureEvents(System.String,Aerotech.Automation1.DotNet.PsoWindowEventMode)">
<summary>
Adds the PsoWindowConfigureEvents AeroScript command to the command queue.
Configures the conditions which will generate PSO window events.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureFixedRange(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWindowConfigureFixedRange AeroScript command to the command queue.
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureFixedRange(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the PsoWindowConfigureFixedRange AeroScript command to the command queue.
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64)">
<summary>
Adds the PsoWindowConfigureInput AeroScript command to the command queue.
Selects the source of the specified window counter.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64)">
<summary>
Adds the PsoWindowConfigureInput AeroScript command to the command queue.
Selects the source of the specified window counter.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowCounterSetValue(System.Int32,System.Int64,System.Int64)">
<summary>
Adds the PsoWindowCounterSetValue AeroScript command to the command queue.
Sets the specified window counter to the specified value.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowCounterSetValue(System.String,System.Int64,System.Int64)">
<summary>
Adds the PsoWindowCounterSetValue AeroScript command to the command queue.
Sets the specified window counter to the specified value.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowOutputOff(System.Int32,System.Int64)">
<summary>
Adds the PsoWindowOutputOff AeroScript command to the command queue.
Disables the specified window output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowOutputOff(System.String,System.Int64)">
<summary>
Adds the PsoWindowOutputOff AeroScript command to the command queue.
Disables the specified window output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowOutputOn(System.Int32,System.Int64)">
<summary>
Adds the PsoWindowOutputOn AeroScript command to the command queue.
Enables the specified window output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.PsoCommands.PsoWindowOutputOn(System.String,System.Int64)">
<summary>
Adds the PsoWindowOutputOn AeroScript command to the command queue.
Enables the specified window output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands">
<summary>
A class to add IO AeroScript commands to a command queue. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureArrayMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the AnalogOutputConfigureArrayMode AeroScript command to the command queue.
Configures the specified analog output to use values from the drive array.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureArrayMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Adds the AnalogOutputConfigureArrayMode AeroScript command to the command queue.
Configures the specified analog output to use values from the drive array.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Adds the AnalogOutputConfigureAxisTrackingMode AeroScript command to the command queue.
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Adds the AnalogOutputConfigureAxisTrackingMode AeroScript command to the command queue.
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureDefaultMode(System.Int32,System.Int64)">
<summary>
Adds the AnalogOutputConfigureDefaultMode AeroScript command to the command queue.
Restores the analog output configuration to the default operating mode.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureDefaultMode(System.String,System.Int64)">
<summary>
Adds the AnalogOutputConfigureDefaultMode AeroScript command to the command queue.
Restores the analog output configuration to the default operating mode.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.Int32,System.Int64,System.Int32[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Adds the AnalogOutputConfigureVectorTrackingMode AeroScript command to the command queue.
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.String,System.Int64,System.String[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Adds the AnalogOutputConfigureVectorTrackingMode AeroScript command to the command queue.
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on this command queue's task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputSet(System.Int32,System.Int64,System.Double)">
<summary>
Adds the AnalogOutputSet AeroScript command to the command queue.
Sets the value of a specified analog output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.AnalogOutputSet(System.String,System.Int64,System.Double)">
<summary>
Adds the AnalogOutputSet AeroScript command to the command queue.
Sets the value of a specified analog output.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.DigitalOutputSet(System.Int32,System.Int64,System.Int64)">
<summary>
Adds the DigitalOutputSet AeroScript command to the command queue.
Sets the value of the specified digital output bit.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.DigitalOutputSet(System.String,System.Int64,System.Int64)">
<summary>
Adds the DigitalOutputSet AeroScript command to the command queue.
Sets the value of the specified digital output bit.
Executes on this command queue's task.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.VirtualBinaryInputSet(System.Int64,System.Int64)">
<summary>
Adds the VirtualBinaryInputSet AeroScript command to the command queue.
Sets the value of the specified virtual binary input bit.
Executes on this command queue's task.
</summary>
<param name="inputNum">The virtual binary input bit to set.</param>
<param name="value">The value to which you set the virtual binary input bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.VirtualBinaryOutputSet(System.Int64,System.Int64)">
<summary>
Adds the VirtualBinaryOutputSet AeroScript command to the command queue.
Sets the value of the specified virtual binary output bit.
Executes on this command queue's task.
</summary>
<param name="outputNum">The virtual binary output bit to set.</param>
<param name="value">The value to which you set the virtual binary output bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.VirtualRegisterInputSet(System.Int64,System.Double)">
<summary>
Adds the VirtualRegisterInputSet AeroScript command to the command queue.
Sets the value of a specified virtual register input.
Executes on this command queue's task.
</summary>
<param name="inputNum">The number of the virtual register input to set.</param>
<param name="value">The value to set to the virtual register input.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueCommands.IOCommands.VirtualRegisterOutputSet(System.Int64,System.Double)">
<summary>
Adds the VirtualRegisterOutputSet AeroScript command to the command queue.
Sets the value of a specified virtual register output.
Executes on this command queue's task.
</summary>
<param name="outputNum">The number of the virtual register output to set.</param>
<param name="value">The value to set to the virtual register output.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandQueueStatus">
<summary>
Represents the status of a command queue on an Automation1 controller.
Instances of this class represent a moment in time for a command queue.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.CommandQueue.Status"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommandQueueStatus.#ctor(System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueStatus.IsPaused">
<summary>
Gets whether the command queue is currently paused.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueStatus.IsEmpty">
<summary>
Gets whether the command queue is empty, meaning there is no currently executing AeroScript command and there are no other AeroScript commands in the command queue.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueStatus.CommandQueueLineNumber">
<summary>
Gets the number of lines of AeroScript that the command queue has executed over its entire lifespan. This property gets the total number of lines of AeroScript executed since the command queue was created, not the number of commands that have been executed, since each command can contain multiple lines of AeroScript.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueStatus.NumberOfExecutedCommands">
<summary>
Gets the number of commands the command queue has executed over its entire lifespan. An individual command can contain one or more lines of AeroScript which is possible if you call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueueCommands.Execute(System.String)"/> method with a string of AeroScript that contains multiple lines. This property gets how many individual commands were executed regardless of how many lines of AeroScript each command contained.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueStatus.NumberOfUnexecutedCommands">
<summary>
Gets the number of commands that have been added to the command queue and have yet to be executed. This count includes the currently executing AeroScript command, if there is one. An individual command can contain one or more lines of AeroScript which is possible if you call the <see cref="M:Aerotech.Automation1.DotNet.CommandQueueCommands.Execute(System.String)"/> method with a string of AeroScript that contains multiple lines. This property gets how many unexecuted commands remain in the command queue regardless of how many lines of AeroScript each command contains.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommandQueueStatus.NumberOfTimesEmptied">
<summary>
Gets the number of times the command queue has been emptied.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ICommandExecuter">
<summary>
An interface to execute commands on the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands">
<summary>
A class to execute commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ControllerFiles,Aerotech.Automation1.DotNet.IStatus,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet},Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache},Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.InternalAeroScriptCompiler})">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.Execute(System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on task 1.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.Execute(System.String,System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.Execute(System.String,System.Int32)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptAxis(System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on task 1 and returns an AeroScript axis value (which is the index of the axis).
To get a return value from the AeroScript command, set the value of the AeroScript $areturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $areturn[0] property, this method will return 0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptAxis(System.String,System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript axis value (which is the index of the axis).
To get a return value from the AeroScript command, set the value of the AeroScript $areturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $areturn[0] property, this method will return 0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptAxis(System.String,System.Int32)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript axis value (which is the index of the axis).
To get a return value from the AeroScript command, set the value of the AeroScript $areturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $areturn[0] property, this method will return 0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptInteger(System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on task 1 and returns an AeroScript integer value (which is a 64-bit long integer).
To get a return value from the AeroScript command, set the value of the AeroScript $ireturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $ireturn[0] property, this method will return 0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptInteger(System.String,System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript integer value (which is a 64-bit long integer).
To get a return value from the AeroScript command, set the value of the AeroScript $ireturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $ireturn[0] property, this method will return 0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptInteger(System.String,System.Int32)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript integer value (which is a 64-bit long integer).
To get a return value from the AeroScript command, set the value of the AeroScript $ireturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $ireturn[0] property, this method will return 0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptReal(System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on task 1 and returns an AeroScript real value (which is a double precision floating point number).
To get a return value from the AeroScript command, set the value of the AeroScript $rreturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $rreturn[0] property, this method will return 0.0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptReal(System.String,System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript real value (which is a double precision floating point number).
To get a return value from the AeroScript command, set the value of the AeroScript $rreturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $rreturn[0] property, this method will return 0.0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptReal(System.String,System.Int32)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript real value (which is a double precision floating point number).
To get a return value from the AeroScript command, set the value of the AeroScript $rreturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $rreturn[0] property, this method will return 0.0 by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptString(System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on task 1 and returns an AeroScript string value.
To get a return value from the AeroScript command, set the value of the AeroScript $sreturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $sreturn[0] property, this method will return an empty string by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptString(System.String,System.String)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript string value.
To get a return value from the AeroScript command, set the value of the AeroScript $sreturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $sreturn[0] property, this method will return an empty string by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ExecuteAndReturnAeroScriptString(System.String,System.Int32)">
<summary>
Executes an AeroScript command on the Automation1 controller on the specified task and returns an AeroScript string value.
To get a return value from the AeroScript command, set the value of the AeroScript $sreturn[0] property in the AeroScript command. If no return value
is set or the AeroScript command fails before setting the AeroScript $sreturn[0] property, this method will return an empty string by default.
</summary>
<param name="stringAeroScript">The AeroScript string text to compile and execute.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.BeginCommandQueue(System.String,System.Int32,System.Boolean)">
<summary>
Starts a command queue on the specified task and returns a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object to manage and add commands to the new command queue.
A command queue on a task will store all AeroScript commands added to the command queue and execute them sequentially, in the order they were added.
Adding AeroScript commands to the command queue does not block (unless the command queue is full and <paramref name="shouldBlockIfFull"/> is true), instead the AeroScript command is added to the command queue and will be executed in the future once all previously added commands are executed.
A command queue is usually used to avoid the communication latency in between AeroScript commands when executing your motion with the Commands API (such as when using velocity blending where the communication latency will cause deceleration to occur).
The specified task can only execute queued commands while the command queue is active; non-queued commands from the Commands API and AeroScript programs cannot run while the command queue is active.
When you are done with the command queue, use the <see cref="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue)"/> method to end the command queue and return the task to its normal state.
</summary>
<param name="taskName">The string name of the task to start a command queue on.</param>
<param name="commandCapacity">The maximum number of unexecuted AeroScript commands that can be stored in the command queue, after which the command queue is full.
If the number of unexecuted AeroScript commands in the command queue reaches this number, the next AeroScript command added will either block until the command can be added (if <paramref name="shouldBlockIfFull"/> is true) or throw a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> (if <paramref name="shouldBlockIfFull"/> is false).</param>
<param name="shouldBlockIfFull">Whether or not to block if you add an AeroScript command when the command queue is full. If true, the add will block until the command can be added. If false, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object to manage and add commands to the new command queue on the specified task.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.BeginCommandQueue(System.Int32,System.Int32,System.Boolean)">
<summary>
Starts a command queue on the specified task and returns a <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object to manage and add commands to the new command queue.
A command queue on a task will store all AeroScript commands added to the command queue and execute them sequentially, in the order they were added.
Adding AeroScript commands to the command queue does not block (unless the command queue is full and <paramref name="shouldBlockIfFull"/> is true), instead the AeroScript command is added to the command queue and will be executed in the future once all previously added commands are executed.
A command queue is usually used to avoid the communication latency in between AeroScript commands when executing your motion with the Commands API (such as when using velocity blending where the communication latency will cause deceleration to occur).
The specified task can only execute queued commands while the command queue is active; non-queued commands from the Commands API and AeroScript programs cannot run while the command queue is active.
When you are done with the command queue, use the <see cref="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue)"/> method to end the command queue and return the task to its normal state.
</summary>
<param name="taskIndex">The index of the task to start a command queue on.</param>
<param name="commandCapacity">The maximum number of unexecuted AeroScript commands that can be stored in the command queue, after which the command queue is full.
If the number of unexecuted AeroScript commands in the command queue reaches this number, the next AeroScript command added will either block until the command can be added (if <paramref name="shouldBlockIfFull"/> is true) or throw a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> (if <paramref name="shouldBlockIfFull"/> is false).</param>
<param name="shouldBlockIfFull">Whether or not to block if you add an AeroScript command when the command queue is full. If true, the add will block until the command can be added. If false, a <see cref="T:Aerotech.Automation1.ControllerOperationException"/> will be thrown.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object to manage and add commands to the new command queue on the specified task.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue)">
<summary>
Stops the command queue on the task and returns the task to normal AeroScript execution.
The currently executing AeroScript command, if any, will be aborted. All remaining queued AeroScript commands will be discarded.
This method will wait indefinitely for a command queue to end. Use <see cref="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue,System.Int32)"/> to specify a timeout.
The specified <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object is no longer usable after this method is called.
</summary>
<param name="commandQueue">The command queue to end.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.EndCommandQueue(Aerotech.Automation1.DotNet.CommandQueue,System.Int32)">
<summary>
Stops the command queue on the task and returns the task to normal AeroScript execution.
The currently executing AeroScript command, if any, will be aborted. All remaining queued AeroScript commands will be discarded.
The specified <see cref="T:Aerotech.Automation1.DotNet.CommandQueue"/> object is no longer usable after this method is called.
</summary>
<param name="commandQueue">The command queue to end.</param>
<param name="millisecondsTimeout">The number of milliseconds to wait to end the command queue. If the command queue takes longer than this amount of time to end, an exception is thrown.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.assertIsNotReservedTask(System.Int32)">
<summary>
Throws an exception if the task provided is equal to the reserved task or if the task provided is not a valid task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.MotionCommands">
<summary>
A class to execute Motion AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Abort(System.String)">
<summary>
Aborts motion on the specified axis. The controller stops all motion and ramps the axis to zero speed.
This method waits for the abort to start but it does not wait for the abort to complete.
This method does not block. It is different from the AeroScript Abort() function, which does block.
Use the <see cref="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String)"/> method to ensure aborted motion is done before executing the next command,
otherwise an error might occur.
</summary>
<param name="axisName">The axis to abort.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Abort(System.String[])">
<summary>
Aborts motion on the specified axes. The controller stops all motion and ramps the axes to zero speed.
This method waits for the abort to start but it does not wait for the abort to complete.
This method does not block. It is different from the AeroScript Abort() function, which does block.
Use the <see cref="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String[])"/> method to ensure aborted motion is done before executing the next command,
otherwise an error might occur.
</summary>
<param name="axisNames">The axes to abort.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Abort(System.Int32)">
<summary>
Aborts motion on the specified axis. The controller stops all motion and ramps the axis to zero speed.
This method waits for the abort to start but it does not wait for the abort to complete.
This method does not block. It is different from the AeroScript Abort() function, which does block.
Use the <see cref="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32)"/> method to ensure aborted motion is done before executing the next command,
otherwise an error might occur.
</summary>
<param name="axisIndex">The axis to abort.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Abort(System.Int32[])">
<summary>
Aborts motion on the specified axes. The controller stops all motion and ramps the axes to zero speed.
This method waits for the abort to start but it does not wait for the abort to complete.
This method does not block. It is different from the AeroScript Abort() function, which does block.
Use the <see cref="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32[])"/> method to ensure aborted motion is done before executing the next command,
otherwise an error might occur.
</summary>
<param name="axisIndices">The axes to abort.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Disable(System.String)">
<summary>
Disables the axis so that you cannot command motion.
This method waits for the disable to start but it does not wait for the disable to complete.
This method does not block. It is different from the AeroScript Disable() function, which does block.
</summary>
<param name="axisName">The axis to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Disable(System.String[])">
<summary>
Disables the axes so that you cannot command motion.
This method waits for the disable to start but it does not wait for the disable to complete.
This method does not block. It is different from the AeroScript Disable() function, which does block.
</summary>
<param name="axisNames">The axes to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Disable(System.Int32)">
<summary>
Disables the axis so that you cannot command motion.
This method waits for the disable to start but it does not wait for the disable to complete.
This method does not block. It is different from the AeroScript Disable() function, which does block.
</summary>
<param name="axisIndex">The axis to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Disable(System.Int32[])">
<summary>
Disables the axes so that you cannot command motion.
This method waits for the disable to start but it does not wait for the disable to complete.
This method does not block. It is different from the AeroScript Disable() function, which does block.
</summary>
<param name="axisIndices">The axes to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.Int32)">
<summary>
Enables the axis so that you can command motion.
Executes on task 1.
</summary>
<param name="axis">The axis to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.String)">
<summary>
Enables the axis so that you can command motion.
Executes on task 1.
</summary>
<param name="axis">The axis to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.Int32,System.Int32)">
<summary>
Enables the axis so that you can command motion.
Executes on the specified task.
</summary>
<param name="axis">The axis to enable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.String,System.Int32)">
<summary>
Enables the axis so that you can command motion.
Executes on the specified task.
</summary>
<param name="axis">The axis to enable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.Int32,System.String)">
<summary>
Enables the axis so that you can command motion.
Executes on the specified task.
</summary>
<param name="axis">The axis to enable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.String,System.String)">
<summary>
Enables the axis so that you can command motion.
Executes on the specified task.
</summary>
<param name="axis">The axis to enable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.Int32[])">
<summary>
Enables the axes so that you can command motion.
Executes on task 1.
</summary>
<param name="axes">The axes to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.String[])">
<summary>
Enables the axes so that you can command motion.
Executes on task 1.
</summary>
<param name="axes">The axes to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.Int32[],System.Int32)">
<summary>
Enables the axes so that you can command motion.
Executes on the specified task.
</summary>
<param name="axes">The axes to enable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.String[],System.Int32)">
<summary>
Enables the axes so that you can command motion.
Executes on the specified task.
</summary>
<param name="axes">The axes to enable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.Int32[],System.String)">
<summary>
Enables the axes so that you can command motion.
Executes on the specified task.
</summary>
<param name="axes">The axes to enable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Enable(System.String[],System.String)">
<summary>
Enables the axes so that you can command motion.
Executes on the specified task.
</summary>
<param name="axes">The axes to enable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.Int32)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on task 1.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.String)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on task 1.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.Int32,System.Int32)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.String,System.Int32)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.Int32,System.String)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.String,System.String)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.Int32[])">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on task 1.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.String[])">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on task 1.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.Int32[],System.Int32)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.String[],System.Int32)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.Int32[],System.String)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.Home(System.String[],System.String)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The task waits for completion of the home cycle.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.Int32)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on task 1.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.String)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on task 1.
</summary>
<param name="axis">The axis to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.Int32,System.Int32)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.String,System.Int32)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.Int32,System.String)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.String,System.String)">
<summary>
Performs a home cycle by moving the axis to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axis">The axis to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.Int32[])">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on task 1.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.String[])">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on task 1.
</summary>
<param name="axes">The axes to home.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.Int32[],System.Int32)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.String[],System.Int32)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.Int32[],System.String)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.HomeAsync(System.String[],System.String)">
<summary>
Performs a home cycle by moving the axes to a known hardware reference location. The controller performs the home cycle asynchronously so that the task moves on without waiting for completion.
Executes on the specified task.
</summary>
<param name="axes">The axes to home.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.Int32,System.Double,System.Double)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.String,System.Double,System.Double)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.String,System.Double,System.Double,System.Int32)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.Int32,System.Double,System.Double,System.String)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.String,System.Double,System.Double,System.String)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="position">The absolute target-position of the move.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.Int32[],System.Double[],System.Double[])">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.String[],System.Double[],System.Double[])">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.Int32[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.String[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.Int32[],System.Double[],System.Double[],System.String)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveAbsolute(System.String[],System.Double[],System.Double[],System.String)">
<summary>
Executes an asynchronous point-to-point move to an absolute target-position on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="positions">The absolute target-positions of the move.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double,System.Double)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double,System.Double)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double,System.Double,System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double,System.Double,System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double,System.Double,System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double,System.Double,System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[])">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[])">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[],System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[],System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[],System.Double)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[],System.Double)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.Int32[],System.Double[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCcw(System.String[],System.Double[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated counterclockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform counterclockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double,System.Double)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double,System.Double)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double,System.Double,System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double,System.Double,System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double,System.Double,System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double,System.Double,System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="radius">The radius of the circular arc.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[])">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[])">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[],System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[],System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[],System.Double)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[],System.Double)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.Int32[],System.Double[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveCw(System.String[],System.Double[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated clockwise circular arc move on the specified axes. An arc move creates an arc in vector space using two axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform clockwise circular motion.</param>
<param name="distances">The end points of the circular arc.</param>
<param name="center">The relative offsets of the center point from the starting positions of the axes.</param>
<param name="coordinatedSpeed">The speed of the coordinated circular motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.Int32,System.Double)">
<summary>
Commands an axis to remain at zero velocity for a quantity of time.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.String,System.Double)">
<summary>
Commands an axis to remain at zero velocity for a quantity of time.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.Int32,System.Double,System.Int32)">
<summary>
Commands an axis to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.String,System.Double,System.Int32)">
<summary>
Commands an axis to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.Int32,System.Double,System.String)">
<summary>
Commands an axis to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.String,System.Double,System.String)">
<summary>
Commands an axis to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.Int32[],System.Double)">
<summary>
Commands axes to remain at zero velocity for a quantity of time.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.String[],System.Double)">
<summary>
Commands axes to remain at zero velocity for a quantity of time.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.Int32[],System.Double,System.Int32)">
<summary>
Commands axes to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.String[],System.Double,System.Int32)">
<summary>
Commands axes to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.Int32[],System.Double,System.String)">
<summary>
Commands axes to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveDelay(System.String[],System.Double,System.String)">
<summary>
Commands axes to remain at zero velocity for a quantity of time.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the delay.</param>
<param name="delayTime">Total delay time in milliseconds, rounded to the nearest time interval of the MotionUpdateRate parameter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.Int32,System.Double)">
<summary>
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.String,System.Double)">
<summary>
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.Int32,System.Double,System.Int32)">
<summary>
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.String,System.Double,System.Int32)">
<summary>
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.Int32,System.Double,System.String)">
<summary>
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.String,System.Double,System.String)">
<summary>
Executes an asynchronous freerun move on an axis. The axis will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform freerun motion.</param>
<param name="velocity">The velocity at which to move the specified axis. The sign of the velocity specifies the direction of motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.Int32[],System.Double[])">
<summary>
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.String[],System.Double[])">
<summary>
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.Int32[],System.Double[],System.Int32)">
<summary>
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.String[],System.Double[],System.Int32)">
<summary>
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.Int32[],System.Double[],System.String)">
<summary>
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerun(System.String[],System.Double[],System.String)">
<summary>
Executes an asynchronous freerun move on the specified axes. The axes will move indefinitely at the specified velocity.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform freerun motion.</param>
<param name="velocities">The velocities at which to move the specified axes. The signs of the velocities specify the directions of motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.Int32)">
<summary>
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on task 1.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.String)">
<summary>
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on task 1.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.Int32,System.Int32)">
<summary>
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.String,System.Int32)">
<summary>
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.Int32,System.String)">
<summary>
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.String,System.String)">
<summary>
Stops an asynchronous freerun move on an axis. The axis velocity decelerates to zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to stop freerun motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.Int32[])">
<summary>
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on task 1.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.String[])">
<summary>
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on task 1.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.Int32[],System.Int32)">
<summary>
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.String[],System.Int32)">
<summary>
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.Int32[],System.String)">
<summary>
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveFreerunStop(System.String[],System.String)">
<summary>
Stops an asynchronous freerun move on the specified axes. The axis velocities decelerate to zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to stop freerun motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.Int32,System.Double,System.Double)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.String,System.Double,System.Double)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.String,System.Double,System.Double,System.Int32)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.Int32,System.Double,System.Double,System.String)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.String,System.Double,System.Double,System.String)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform point-to-point motion.</param>
<param name="distance">The distance and direction to move the specified axis relative to the current position. A distance of zero results in no motion.</param>
<param name="speed">The speed at which to move the specified axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.Int32[],System.Double[],System.Double[])">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.String[],System.Double[],System.Double[])">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.Int32[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.String[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.Int32[],System.Double[],System.Double[],System.String)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveIncremental(System.String[],System.Double[],System.Double[],System.String)">
<summary>
Executes an asynchronous point-to-point move by an incremental distance on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point motion.</param>
<param name="distances">The distances and directions to move the specified axes relative to the current positions. A distance of zero results in no motion.</param>
<param name="speeds">The speeds at which to move the specified axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32,System.Double)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String,System.Double)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32,System.Double,System.Int32)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String,System.Double,System.Int32)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32,System.Double,System.String)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String,System.Double,System.String)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32[],System.Double[])">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String[],System.Double[])">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32[],System.Double[],System.Int32)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String[],System.Double[],System.Int32)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32[],System.Double[],System.String)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String[],System.Double[],System.String)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32,System.Double,System.Double)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String,System.Double,System.Double)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String,System.Double,System.Double,System.Int32)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32,System.Double,System.Double,System.String)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String,System.Double,System.Double,System.String)">
<summary>
Executes a coordinated linear move on the specified axis. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform linear motion.</param>
<param name="distance">The end point of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32[],System.Double[],System.Double)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String[],System.Double[],System.Double)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String[],System.Double[],System.Double,System.Int32)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.Int32[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveLinear(System.String[],System.Double[],System.Double,System.String)">
<summary>
Executes a coordinated linear move on the specified axes. A linear move creates a line in vector space on one or more axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform linear motion.</param>
<param name="distances">The end points of the linear move.</param>
<param name="coordinatedSpeed">The speed of the coordinated linear motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32,System.Double)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String,System.Double)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32,System.Double,System.Int32)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String,System.Double,System.Int32)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32,System.Double,System.String)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String,System.Double,System.String)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32[],System.Double[])">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String[],System.Double[])">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32[],System.Double[],System.Int32)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String[],System.Double[],System.Int32)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32[],System.Double[],System.String)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String[],System.Double[],System.String)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform the point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32,System.Double,System.Double)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String,System.Double,System.Double)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String,System.Double,System.Double,System.Int32)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32,System.Double,System.Double,System.String)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String,System.Double,System.Double,System.String)">
<summary>
Executes a point-to-point rapid move on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the point-to-point rapid motion.</param>
<param name="distance">The end point of the rapid move.</param>
<param name="speed">The speed at which to move the axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32[],System.Double[],System.Double[])">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String[],System.Double[],System.Double[])">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String[],System.Double[],System.Double[],System.Int32)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.Int32[],System.Double[],System.Double[],System.String)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.MoveRapid(System.String[],System.Double[],System.Double[],System.String)">
<summary>
Executes a point-to-point rapid move on the specified axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to perform point-to-point rapid motion.</param>
<param name="distances">The end points of the rapid move.</param>
<param name="speeds">The speeds at which to move each of the axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.Int32)">
<summary>
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on task 1.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.String)">
<summary>
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on task 1.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.Int32,System.Int32)">
<summary>
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.String,System.Int32)">
<summary>
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.Int32,System.String)">
<summary>
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.String,System.String)">
<summary>
Clears the program position offset on the specified axis. The program position will be restored to the current axis position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to clear the program position offset.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.Int32[])">
<summary>
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on task 1.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.String[])">
<summary>
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on task 1.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.Int32[],System.Int32)">
<summary>
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.String[],System.Int32)">
<summary>
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.Int32[],System.String)">
<summary>
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetClear(System.String[],System.String)">
<summary>
Clears the program position offsets on the specified axes. The program positions will be restored to the current axis positions.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to clear the program position offsets.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.Int32,System.Double)">
<summary>
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.String,System.Double)">
<summary>
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.Int32,System.Double,System.Int32)">
<summary>
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.String,System.Double,System.Int32)">
<summary>
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.Int32,System.Double,System.String)">
<summary>
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.String,System.Double,System.String)">
<summary>
Sets the program position of the specified axis to the specified value. The controller applies an offset to the current axis position so that the axis does not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the program position.</param>
<param name="programPosition">The new program position to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.Int32[],System.Double[])">
<summary>
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.String[],System.Double[])">
<summary>
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.Int32[],System.Double[],System.Int32)">
<summary>
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.String[],System.Double[],System.Int32)">
<summary>
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.Int32[],System.Double[],System.String)">
<summary>
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.PositionOffsetSet(System.String[],System.Double[],System.String)">
<summary>
Sets the program positions of the specified axes to the specified values. The controller applies an offset to the current axis positions so that the axes do not move. All moves that specify an absolute target-position will be relative to the new program position.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the program positions.</param>
<param name="programPositions">The new program positions to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.Int32)">
<summary>
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on task 1.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.String)">
<summary>
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on task 1.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.Int32,System.Int32)">
<summary>
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.String,System.Int32)">
<summary>
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.Int32,System.String)">
<summary>
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.String,System.String)">
<summary>
Waits for motion to be done on the specified axis and for the axis to be in position. The motion is done when the commanded velocity is at zero. The axis is in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done and in position.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.Int32[])">
<summary>
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on task 1.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.String[])">
<summary>
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on task 1.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.Int32[],System.Int32)">
<summary>
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.String[],System.Int32)">
<summary>
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.Int32[],System.String)">
<summary>
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForInPosition(System.String[],System.String)">
<summary>
Waits for motion to be done on the specified axes and for the axes to be in position. The motion is done when the commanded velocity is at zero. The axes are in position when the position error is at the threshold specified by the InPositionTime and InPositionDistance parameters.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done and in position.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32)">
<summary>
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on task 1.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String)">
<summary>
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on task 1.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32,System.Int32)">
<summary>
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String,System.Int32)">
<summary>
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32,System.String)">
<summary>
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String,System.String)">
<summary>
Waits for motion to be done on the specified axis. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to wait for motion to be done.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32[])">
<summary>
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on task 1.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String[])">
<summary>
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on task 1.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32[],System.Int32)">
<summary>
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String[],System.Int32)">
<summary>
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.Int32[],System.String)">
<summary>
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WaitForMotionDone(System.String[],System.String)">
<summary>
Waits for motion to be done on the specified axes. The motion is done when the commanded velocity is at zero.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to wait for motion to be done.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.Int32[],System.Double[])">
<summary>
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on task 1.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.String[],System.Double[])">
<summary>
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on task 1.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.Int32[],System.Double[],System.Int32)">
<summary>
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.String[],System.Double[],System.Int32)">
<summary>
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.Int32[],System.Double[],System.String)">
<summary>
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetConfigureOffset(System.Int64,System.String[],System.Double[],System.String)">
<summary>
Configures the specified work offset on the specified axes and values. Previously configured axes will retain their values unless overwritten.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to configure. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to configure work offset values.</param>
<param name="programPositions">The program positions to set as the work offset origin.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.Int32[])">
<summary>
Deactivates work offsets for all axes on the controller.
Executes on task 1.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.String[])">
<summary>
Deactivates work offsets for all axes on the controller.
Executes on task 1.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.Int32[],System.Int32)">
<summary>
Deactivates work offsets for all axes on the controller.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.String[],System.Int32)">
<summary>
Deactivates work offsets for all axes on the controller.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.Int32[],System.String)">
<summary>
Deactivates work offsets for all axes on the controller.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.String[],System.String)">
<summary>
Deactivates work offsets for all axes on the controller.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to disable work offsets.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable">
<summary>
Deactivates all active work offsets.
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.Int32)">
<summary>
Deactivates all active work offsets.
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetDisable(System.String)">
<summary>
Deactivates all active work offsets.
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64)">
<summary>
Activates the specified work offset and applies offsets to all configured axes.
Executes on task 1.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.Int32)">
<summary>
Activates the specified work offset and applies offsets to all configured axes.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.String)">
<summary>
Activates the specified work offset and applies offsets to all configured axes.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.Int32[])">
<summary>
Activates the specified work offset and applies offsets to the specified axes.
Executes on task 1.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.String[])">
<summary>
Activates the specified work offset and applies offsets to the specified axes.
Executes on task 1.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.Int32[],System.Int32)">
<summary>
Activates the specified work offset and applies offsets to the specified axes.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.String[],System.Int32)">
<summary>
Activates the specified work offset and applies offsets to the specified axes.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.Int32[],System.String)">
<summary>
Activates the specified work offset and applies offsets to the specified axes.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetEnable(System.Int64,System.String[],System.String)">
<summary>
Activates the specified work offset and applies offsets to the specified axes.
Executes on the specified task.
</summary>
<param name="offsetNumber">The index of the work offset to enable. An integer between and including 1 and 100.</param>
<param name="axes">The axes on which to enable the specified work offset.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetResetConfiguration">
<summary>
Erases the work offset configurations on all axes. All work offsets must first be disabled.
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetResetConfiguration(System.Int32)">
<summary>
Erases the work offset configurations on all axes. All work offsets must first be disabled.
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionCommands.WorkOffsetResetConfiguration(System.String)">
<summary>
Erases the work offset configurations on all axes. All work offsets must first be disabled.
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.DeviceCommands">
<summary>
A class to execute Device AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayRead(System.String,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType)">
<summary>
Reads the contents of the drive array into the <paramref name="valuesArrayToPopulate"/> array.
This method does not use a controller task.
</summary>
<param name="axisName">The axis from which to read the drive array.</param>
<param name="valuesArrayToPopulate">The array to populate with data that was read from the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array from which to begin reading data.</param>
<param name="numElements">The number of drive array elements to read.</param>
<param name="driveArrayType">The underlying data type to read from the drive array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayRead(System.Int32,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType)">
<summary>
Reads the contents of the drive array into the <paramref name="valuesArrayToPopulate"/> array.
This method does not use a controller task.
</summary>
<param name="axisIndex">The axis from which to read the drive array.</param>
<param name="valuesArrayToPopulate">The array to populate with data that was read from the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array from which to begin reading data.</param>
<param name="numElements">The number of drive array elements to read.</param>
<param name="driveArrayType">The underlying data type to read from the drive array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayWrite(System.String,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType)">
<summary>
Writes the contents of the <paramref name="values"/> array to the drive array.
This method does not use a controller task.
</summary>
<param name="axis">The axis on which to write the drive array.</param>
<param name="values">The AeroScript array variable from which to write data to the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array from which to begin writing data.</param>
<param name="numElements">The number of drive array elements to write.</param>
<param name="driveArrayType">The underlying data type to write to the drive array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayWrite(System.Int32,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType)">
<summary>
Writes the contents of the <paramref name="values"/> array to the drive array.
This method does not use a controller task.
</summary>
<param name="axisIndex">The axis on which to write the drive array.</param>
<param name="values">The array containing data to write to the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array at which to begin writing data.</param>
<param name="numElements">The number of drive array elements to write.</param>
<param name="driveArrayType">The underlying data type to write to the drive array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayWrite(System.Int32,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType,System.Int32)">
<summary>
Writes the contents of an AeroScript array variable to the drive array.
This command is deprecated and will be removed in the next major version of Automation1 software. This command now executes without using a task.
Use an overload that does not accept a task argument.
</summary>
<param name="axis">The axis on which to write the drive array.</param>
<param name="values">The AeroScript array variable from which to write data to the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array from which to begin writing data.</param>
<param name="numElements">The number of drive array elements to write.</param>
<param name="driveArrayType">The underlying data type to write to the drive array.</param>
<param name="executionTaskIndex">This argument is unused.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayWrite(System.String,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType,System.Int32)">
<summary>
Writes the contents of an AeroScript array variable to the drive array.
This command is deprecated and will be removed in the next major version of Automation1 software. This command now executes without using a task.
Use an overload that does not accept a task argument.
</summary>
<param name="axis">The axis on which to write the drive array.</param>
<param name="values">The AeroScript array variable from which to write data to the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array from which to begin writing data.</param>
<param name="numElements">The number of drive array elements to write.</param>
<param name="driveArrayType">The underlying data type to write to the drive array.</param>
<param name="executionTaskIndex">This argument is unused.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayWrite(System.Int32,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType,System.String)">
<summary>
Writes the contents of an AeroScript array variable to the drive array.
This command is deprecated and will be removed in the next major version of Automation1 software. This command now executes without using a task.
Use an overload that does not accept a task argument.
</summary>
<param name="axis">The axis on which to write the drive array.</param>
<param name="values">The AeroScript array variable from which to write data to the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array from which to begin writing data.</param>
<param name="numElements">The number of drive array elements to write.</param>
<param name="driveArrayType">The underlying data type to write to the drive array.</param>
<param name="executionTaskName">This argument is unused.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveArrayWrite(System.String,System.Double[],System.Int64,System.Int64,Aerotech.Automation1.DotNet.DriveArrayType,System.String)">
<summary>
Writes the contents of an AeroScript array variable to the drive array.
This command is deprecated and will be removed in the next major version of Automation1 software. This command now executes without using a task.
Use an overload that does not accept a task argument.
</summary>
<param name="axis">The axis on which to write the drive array.</param>
<param name="values">The AeroScript array variable from which to write data to the drive array.</param>
<param name="startAddress">Byte-addressable index of the drive array from which to begin writing data.</param>
<param name="numElements">The number of drive array elements to write.</param>
<param name="driveArrayType">The underlying data type to write to the drive array.</param>
<param name="executionTaskName">This argument is unused.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOff(System.Int32)">
<summary>
Disengages the brake output and allows the axis to move freely.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOff(System.String)">
<summary>
Disengages the brake output and allows the axis to move freely.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOff(System.Int32,System.Int32)">
<summary>
Disengages the brake output and allows the axis to move freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOff(System.String,System.Int32)">
<summary>
Disengages the brake output and allows the axis to move freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOff(System.Int32,System.String)">
<summary>
Disengages the brake output and allows the axis to move freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOff(System.String,System.String)">
<summary>
Disengages the brake output and allows the axis to move freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disengage the brake.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOn(System.Int32)">
<summary>
Engages the brake output and prevents the axis from moving freely.
Executes on task 1.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOn(System.String)">
<summary>
Engages the brake output and prevents the axis from moving freely.
Executes on task 1.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOn(System.Int32,System.Int32)">
<summary>
Engages the brake output and prevents the axis from moving freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOn(System.String,System.Int32)">
<summary>
Engages the brake output and prevents the axis from moving freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOn(System.Int32,System.String)">
<summary>
Engages the brake output and prevents the axis from moving freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveBrakeOn(System.String,System.String)">
<summary>
Engages the brake output and prevents the axis from moving freely.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to engage the brake.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64)">
<summary>
Configures the drive array for drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64)">
<summary>
Configures the drive array for drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64,System.Int32)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64,System.Int32)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64,System.String)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64,System.String)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures the drive array for drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures the drive array for drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureArray(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures the drive array for drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the drive array for drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first drive data capture value will be written.</param>
<param name="numberOfPoints">The number of points that will be written to the drive array by drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.Int32)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.Int32)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.String)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.String)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.Int32)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.Int32)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.String)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureInput,System.String)">
<summary>
Selects the signal that will be stored by drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture signal.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="input">The input signal for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Selects the event that will trigger drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Selects the event that will trigger drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.Int32)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.Int32)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.String)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.String)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Selects the event that will trigger drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger)">
<summary>
Selects the event that will trigger drive data capture.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.Int32)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.Int32)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.Int32,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.String)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureConfigureTrigger(System.String,System.Int64,Aerotech.Automation1.DotNet.DriveDataCaptureTrigger,System.String)">
<summary>
Selects the event that will trigger drive data capture.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the drive data capture trigger.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="trigger">The trigger event for drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.Int32)">
<summary>
Disables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.String)">
<summary>
Disables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.Int32,System.Int32)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.String,System.Int32)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.Int32,System.String)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.String,System.String)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.Int32,System.Int64)">
<summary>
Disables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.String,System.Int64)">
<summary>
Disables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.Int32,System.Int64,System.Int32)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.String,System.Int64,System.Int32)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.Int32,System.Int64,System.String)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOff(System.String,System.Int64,System.String)">
<summary>
Disables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.Int32)">
<summary>
Enables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.String)">
<summary>
Enables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.Int32,System.Int32)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.String,System.Int32)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.Int32,System.String)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.String,System.String)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.Int32,System.Int64)">
<summary>
Enables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.String,System.Int64)">
<summary>
Enables drive data capture of configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.Int32,System.Int64,System.Int32)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.String,System.Int64,System.Int32)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.Int32,System.Int64,System.String)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureOn(System.String,System.Int64,System.String)">
<summary>
Enables drive data capture of configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. When capturing one input signal on the specified axis, specify a value of 0. When capturing two input signals on the specified axis, specify 0 for the first signal and 1 for the second signal.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureReset(System.Int32,System.Int64)">
<summary>
Resets drive data capture configuration.
Executes on task 1.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureReset(System.String,System.Int64)">
<summary>
Resets drive data capture configuration.
Executes on task 1.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureReset(System.Int32,System.Int64,System.Int32)">
<summary>
Resets drive data capture configuration.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureReset(System.String,System.Int64,System.Int32)">
<summary>
Resets drive data capture configuration.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureReset(System.Int32,System.Int64,System.String)">
<summary>
Resets drive data capture configuration.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveDataCaptureReset(System.String,System.Int64,System.String)">
<summary>
Resets drive data capture configuration.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset drive data capture.</param>
<param name="configurationNumber">The data capture configuration number. To reset the first configuration on the specified axis, specify a value of 0. To reset the second configuration on the specified axis, specify a value of 1.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Inverts the output signal of a specified channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Inverts the output signal of a specified channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.Int32)">
<summary>
Inverts the output signal of a specified channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.Int32)">
<summary>
Inverts the output signal of a specified channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.String)">
<summary>
Inverts the output signal of a specified channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDirection(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.String)">
<summary>
Inverts the output signal of a specified channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="reverseDirection">Reverses the direction of the encoder output signal.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64)">
<summary>
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.Int32)">
<summary>
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.Int32)">
<summary>
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.String)">
<summary>
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureDivider(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int64,System.String)">
<summary>
Applies a divider on the specified output channel, lowering the frequency of output signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputDivider">The divider to apply to encoder output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureInput(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel)">
<summary>
Configures an output channel to echo encoder signals from the specified input channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureInput(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel)">
<summary>
Configures an output channel to echo encoder signals from the specified input channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureInput(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel,System.Int32)">
<summary>
Configures an output channel to echo encoder signals from the specified input channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureInput(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel,System.Int32)">
<summary>
Configures an output channel to echo encoder signals from the specified input channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureInput(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel,System.String)">
<summary>
Configures an output channel to echo encoder signals from the specified input channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputConfigureInput(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderInputChannel,System.String)">
<summary>
Configures an output channel to echo encoder signals from the specified input channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="inputChannel">The incoming encoder channel.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOff(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Disables encoder output on the specified output channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOff(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Disables encoder output on the specified output channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOff(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int32)">
<summary>
Disables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOff(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int32)">
<summary>
Disables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOff(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.String)">
<summary>
Disables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOff(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.String)">
<summary>
Disables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Enables encoder output on the specified output channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel)">
<summary>
Enables encoder output on the specified output channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int32)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.Int32)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.String)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,System.String)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode)">
<summary>
Enables encoder output on the specified output channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode)">
<summary>
Enables encoder output on the specified output channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode,System.Int32)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode,System.Int32)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.Int32,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode,System.String)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveEncoderOutputOn(System.String,Aerotech.Automation1.DotNet.EncoderOutputChannel,Aerotech.Automation1.DotNet.EncoderOutputMode,System.String)">
<summary>
Enables encoder output on the specified output channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable encoder output.</param>
<param name="outputChannel">The outgoing encoder channel.</param>
<param name="outputMode">This argument is unused and will be removed in the next major version of Automation1 software. You must specify EncoderOutputMode.Default.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.Int32,Aerotech.Automation1.DotNet.DriveItem)">
<summary>
Gets the specified drive item from the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.String,Aerotech.Automation1.DotNet.DriveItem)">
<summary>
Gets the specified drive item from the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.Int32,Aerotech.Automation1.DotNet.DriveItem,System.Int32)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.String,Aerotech.Automation1.DotNet.DriveItem,System.Int32)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.Int32,Aerotech.Automation1.DotNet.DriveItem,System.String)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.String,Aerotech.Automation1.DotNet.DriveItem,System.String)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.Int32,Aerotech.Automation1.DotNet.DriveItem,System.Int64)">
<summary>
Gets the specified drive item from the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="additionalData">Additional data for the specified drive item. This argument is required by some drive items.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.String,Aerotech.Automation1.DotNet.DriveItem,System.Int64)">
<summary>
Gets the specified drive item from the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="additionalData">Additional data for the specified drive item. This argument is required by some drive items.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.Int32,Aerotech.Automation1.DotNet.DriveItem,System.Int64,System.Int32)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="additionalData">Additional data for the specified drive item. This argument is required by some drive items.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.String,Aerotech.Automation1.DotNet.DriveItem,System.Int64,System.Int32)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="additionalData">Additional data for the specified drive item. This argument is required by some drive items.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.Int32,Aerotech.Automation1.DotNet.DriveItem,System.Int64,System.String)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="additionalData">Additional data for the specified drive item. This argument is required by some drive items.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveGetItem(System.String,Aerotech.Automation1.DotNet.DriveItem,System.Int64,System.String)">
<summary>
Gets the specified drive item from the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to retrieve the drive item value.</param>
<param name="driveItem">The drive item to retrieve.</param>
<param name="additionalData">Additional data for the specified drive item. This argument is required by some drive items.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified drive item.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[])">
<summary>
Configures pulse streaming mode.
Executes on task 1.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[])">
<summary>
Configures pulse streaming mode.
Executes on task 1.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[],System.Int32)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[],System.Int32)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[],System.String)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[],System.String)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode)">
<summary>
Configures pulse streaming mode.
Executes on task 1.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode)">
<summary>
Configures pulse streaming mode.
Executes on task 1.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode,System.Int32)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode,System.Int32)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.Int32,System.Int32[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode,System.String)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamConfigure(System.String,System.String[],System.Double[],Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode,System.String)">
<summary>
Configures pulse streaming mode.
Executes on the specified task.
</summary>
<param name="outputAxis">The output axis on which to configure pulse streaming mode.</param>
<param name="inputAxes">An array of one or more axes which will be tracked.</param>
<param name="inputScaleFactors">An array of scale factors to apply to each axis in the $inputAxes array.</param>
<param name="signalMode">The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOff(System.Int32)">
<summary>
Disables pulse streaming mode on an axis.
Executes on task 1.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOff(System.String)">
<summary>
Disables pulse streaming mode on an axis.
Executes on task 1.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOff(System.Int32,System.Int32)">
<summary>
Disables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOff(System.String,System.Int32)">
<summary>
Disables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOff(System.Int32,System.String)">
<summary>
Disables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOff(System.String,System.String)">
<summary>
Disables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to disable pulse streaming mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOn(System.Int32)">
<summary>
Enables pulse streaming mode on an axis.
Executes on task 1.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOn(System.String)">
<summary>
Enables pulse streaming mode on an axis.
Executes on task 1.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOn(System.Int32,System.Int32)">
<summary>
Enables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOn(System.String,System.Int32)">
<summary>
Enables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOn(System.Int32,System.String)">
<summary>
Enables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DrivePulseStreamOn(System.String,System.String)">
<summary>
Enables pulse streaming mode on an axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis on which to enable pulse streaming mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetAuxiliaryFeedback(System.Int32,System.Double)">
<summary>
Sets the auxiliary feedback of the axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetAuxiliaryFeedback(System.String,System.Double)">
<summary>
Sets the auxiliary feedback of the axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetAuxiliaryFeedback(System.Int32,System.Double,System.Int32)">
<summary>
Sets the auxiliary feedback of the axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetAuxiliaryFeedback(System.String,System.Double,System.Int32)">
<summary>
Sets the auxiliary feedback of the axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetAuxiliaryFeedback(System.Int32,System.Double,System.String)">
<summary>
Sets the auxiliary feedback of the axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetAuxiliaryFeedback(System.String,System.Double,System.String)">
<summary>
Sets the auxiliary feedback of the axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the auxiliary feedback.</param>
<param name="auxiliaryFeedback">The feedback value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetEncoderPosition(System.Int32,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double)">
<summary>
Sets the hardware position counter of a drive encoder.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetEncoderPosition(System.String,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double)">
<summary>
Sets the hardware position counter of a drive encoder.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetEncoderPosition(System.Int32,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double,System.Int32)">
<summary>
Sets the hardware position counter of a drive encoder.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetEncoderPosition(System.String,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double,System.Int32)">
<summary>
Sets the hardware position counter of a drive encoder.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetEncoderPosition(System.Int32,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double,System.String)">
<summary>
Sets the hardware position counter of a drive encoder.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetEncoderPosition(System.String,Aerotech.Automation1.DotNet.DriveEncoderChannel,System.Double,System.String)">
<summary>
Sets the hardware position counter of a drive encoder.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the hardware position counter of a drive encoder.</param>
<param name="encoderChannel">The drive encoder on which to set the hardware position counter.</param>
<param name="encoderValue">The value to set to the hardware position counter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.Int32,System.Double)">
<summary>
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.String,System.Double)">
<summary>
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.Int32,System.Double,System.Int32)">
<summary>
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.String,System.Double,System.Int32)">
<summary>
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.Int32,System.Double,System.String)">
<summary>
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.String,System.Double,System.String)">
<summary>
Sets the position command value of the specified axis at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionCommandValue">The position command value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.Int32[],System.Double[])">
<summary>
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.String[],System.Double[])">
<summary>
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.Int32[],System.Double[],System.Int32)">
<summary>
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.String[],System.Double[],System.Int32)">
<summary>
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.Int32[],System.Double[],System.String)">
<summary>
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionCommand(System.String[],System.Double[],System.String)">
<summary>
Sets the position command values of the specified axes at the servo loop level and adjusts the position feedback for position error.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionCommandValues">The position command values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.Int32,System.Double)">
<summary>
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.String,System.Double)">
<summary>
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.Int32,System.Double,System.Int32)">
<summary>
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.String,System.Double,System.Int32)">
<summary>
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.Int32,System.Double,System.String)">
<summary>
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.String,System.Double,System.String)">
<summary>
Sets the position command and the position feedback value of the specified axis at the servo loop level.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the position command.</param>
<param name="positionFeedbackValue">The position feedback value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.Int32[],System.Double[])">
<summary>
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.String[],System.Double[])">
<summary>
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.Int32[],System.Double[],System.Int32)">
<summary>
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.String[],System.Double[],System.Int32)">
<summary>
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.Int32[],System.Double[],System.String)">
<summary>
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DeviceCommands.DriveSetPositionFeedback(System.String[],System.Double[],System.String)">
<summary>
Sets the position command and the position feedback values of the specified axes at the servo loop level.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the position command.</param>
<param name="positionFeedbackValues">The position feedback values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Device">
<summary>
Gets a way to execute Device commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.AdvancedMotion">
<summary>
Gets a way to execute AdvancedMotion commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.ServoLoopTuning">
<summary>
Gets a way to execute ServoLoopTuning commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Galvo">
<summary>
Gets a way to execute Galvo commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.FaultAndError">
<summary>
Gets a way to execute FaultAndError commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.MotionSetup">
<summary>
Gets a way to execute MotionSetup commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.SafeZone">
<summary>
Gets a way to execute SafeZone commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Transformation">
<summary>
Gets a way to execute Transformation commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Calibration">
<summary>
Gets a way to execute Calibration commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Joystick">
<summary>
Gets a way to execute Joystick commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.DriveAnalogControl">
<summary>
Gets a way to execute DriveAnalogControl commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Autofocus">
<summary>
Gets a way to execute Autofocus commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Pso">
<summary>
Gets a way to execute Pso commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.IO">
<summary>
Gets a way to execute IO commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Commands.Motion">
<summary>
Gets a way to execute Motion commands on the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands">
<summary>
A class to execute AdvancedMotion AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingFreeTable(System.Int64)">
<summary>
Unloads a camming table from the SMC.
Executes on task 1.
</summary>
<param name="tableNum">The camming table number to remove. This value must be greater than or equal to 0 and less than or equal to 99.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingFreeTable(System.Int64,System.Int32)">
<summary>
Unloads a camming table from the SMC.
Executes on the specified task.
</summary>
<param name="tableNum">The camming table number to remove. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingFreeTable(System.Int64,System.String)">
<summary>
Unloads a camming table from the SMC.
Executes on the specified task.
</summary>
<param name="tableNum">The camming table number to remove. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingLoadTableFromArray(System.Int64,System.Double[],System.Double[],System.Int64,Aerotech.Automation1.DotNet.CammingUnits,Aerotech.Automation1.DotNet.CammingInterpolation,Aerotech.Automation1.DotNet.CammingWrapping,System.Double)">
<summary>
Loads a camming table into the SMC.
Executes on task 1.
</summary>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99. Use this number when using the CammingOn() and CammingFreeTable() functions.</param>
<param name="leaderValues">Array of leader axis position values for the follower axis to track.</param>
<param name="followerValues">Array of follower axis positions or velocities to use.</param>
<param name="numValues">The number of values in the leaderValues and followerValues arrays.</param>
<param name="unitsMode">The units of the values in the camming table.</param>
<param name="interpolationMode">The interpolation type to use if the position of the leader axis is between two values in the table.</param>
<param name="wrapMode">Determines how a leader axis position value outside of the table is treated.</param>
<param name="tableOffset">An offset applied to all follower axis position or velocity values in the table.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingLoadTableFromArray(System.Int64,System.Double[],System.Double[],System.Int64,Aerotech.Automation1.DotNet.CammingUnits,Aerotech.Automation1.DotNet.CammingInterpolation,Aerotech.Automation1.DotNet.CammingWrapping,System.Double,System.Int32)">
<summary>
Loads a camming table into the SMC.
Executes on the specified task.
</summary>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99. Use this number when using the CammingOn() and CammingFreeTable() functions.</param>
<param name="leaderValues">Array of leader axis position values for the follower axis to track.</param>
<param name="followerValues">Array of follower axis positions or velocities to use.</param>
<param name="numValues">The number of values in the leaderValues and followerValues arrays.</param>
<param name="unitsMode">The units of the values in the camming table.</param>
<param name="interpolationMode">The interpolation type to use if the position of the leader axis is between two values in the table.</param>
<param name="wrapMode">Determines how a leader axis position value outside of the table is treated.</param>
<param name="tableOffset">An offset applied to all follower axis position or velocity values in the table.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingLoadTableFromArray(System.Int64,System.Double[],System.Double[],System.Int64,Aerotech.Automation1.DotNet.CammingUnits,Aerotech.Automation1.DotNet.CammingInterpolation,Aerotech.Automation1.DotNet.CammingWrapping,System.Double,System.String)">
<summary>
Loads a camming table into the SMC.
Executes on the specified task.
</summary>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99. Use this number when using the CammingOn() and CammingFreeTable() functions.</param>
<param name="leaderValues">Array of leader axis position values for the follower axis to track.</param>
<param name="followerValues">Array of follower axis positions or velocities to use.</param>
<param name="numValues">The number of values in the leaderValues and followerValues arrays.</param>
<param name="unitsMode">The units of the values in the camming table.</param>
<param name="interpolationMode">The interpolation type to use if the position of the leader axis is between two values in the table.</param>
<param name="wrapMode">Determines how a leader axis position value outside of the table is treated.</param>
<param name="tableOffset">An offset applied to all follower axis position or velocity values in the table.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOff(System.Int32)">
<summary>
Disables camming on the specified follower axis.
Executes on task 1.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOff(System.String)">
<summary>
Disables camming on the specified follower axis.
Executes on task 1.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOff(System.Int32,System.Int32)">
<summary>
Disables camming on the specified follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOff(System.String,System.Int32)">
<summary>
Disables camming on the specified follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOff(System.Int32,System.String)">
<summary>
Disables camming on the specified follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOff(System.String,System.String)">
<summary>
Disables camming on the specified follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The follower axis on which to disable camming.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOn(System.Int32,System.Int32,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput)">
<summary>
Enables camming on the specified leader axis and follower axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOn(System.String,System.String,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput)">
<summary>
Enables camming on the specified leader axis and follower axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOn(System.Int32,System.Int32,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput,System.Int32)">
<summary>
Enables camming on the specified leader axis and follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOn(System.String,System.String,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput,System.Int32)">
<summary>
Enables camming on the specified leader axis and follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOn(System.Int32,System.Int32,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput,System.String)">
<summary>
Enables camming on the specified leader axis and follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.CammingOn(System.String,System.String,System.Int64,Aerotech.Automation1.DotNet.CammingSource,Aerotech.Automation1.DotNet.CammingOutput,System.String)">
<summary>
Enables camming on the specified leader axis and follower axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis to set as the follower axis.</param>
<param name="leaderAxis">The axis to set as the leader axis.</param>
<param name="tableNum">The camming table number to use. This value must be greater than or equal to 0 and less than or equal to 99.</param>
<param name="source">The signal on the leader axis that the follower axis will track.</param>
<param name="output">The output signal to generate and the synchronization mode to use on the camming follower axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOff(System.Int32)">
<summary>
Disables gearing on an axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOff(System.String)">
<summary>
Disables gearing on an axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOff(System.Int32,System.Int32)">
<summary>
Disables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOff(System.String,System.Int32)">
<summary>
Disables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOff(System.Int32,System.String)">
<summary>
Disables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOff(System.String,System.String)">
<summary>
Disables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to disable gearing.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOn(System.Int32,Aerotech.Automation1.DotNet.GearingFilter)">
<summary>
Enables gearing on an axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOn(System.String,Aerotech.Automation1.DotNet.GearingFilter)">
<summary>
Enables gearing on an axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOn(System.Int32,Aerotech.Automation1.DotNet.GearingFilter,System.Int32)">
<summary>
Enables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOn(System.String,Aerotech.Automation1.DotNet.GearingFilter,System.Int32)">
<summary>
Enables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOn(System.Int32,Aerotech.Automation1.DotNet.GearingFilter,System.String)">
<summary>
Enables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingOn(System.String,Aerotech.Automation1.DotNet.GearingFilter,System.String)">
<summary>
Enables gearing on an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to enable gearing.</param>
<param name="filter">Type of filter applied to follower axis motion.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetLeaderAxis(System.Int32,System.Int32,Aerotech.Automation1.DotNet.GearingSource)">
<summary>
Configures gearing for an axis.
Executes on task 1.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetLeaderAxis(System.String,System.String,Aerotech.Automation1.DotNet.GearingSource)">
<summary>
Configures gearing for an axis.
Executes on task 1.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetLeaderAxis(System.Int32,System.Int32,Aerotech.Automation1.DotNet.GearingSource,System.Int32)">
<summary>
Configures gearing for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetLeaderAxis(System.String,System.String,Aerotech.Automation1.DotNet.GearingSource,System.Int32)">
<summary>
Configures gearing for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetLeaderAxis(System.Int32,System.Int32,Aerotech.Automation1.DotNet.GearingSource,System.String)">
<summary>
Configures gearing for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetLeaderAxis(System.String,System.String,Aerotech.Automation1.DotNet.GearingSource,System.String)">
<summary>
Configures gearing for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">Follower axis for the gearing setup.</param>
<param name="leaderAxis">Leader axis for the gearing setup.</param>
<param name="gearingSource">Input data source for gearing.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetRatio(System.Int32,System.Double)">
<summary>
Sets the gearing ratio for an axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetRatio(System.String,System.Double)">
<summary>
Sets the gearing ratio for an axis.
Executes on task 1.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetRatio(System.Int32,System.Double,System.Int32)">
<summary>
Sets the gearing ratio for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetRatio(System.String,System.Double,System.Int32)">
<summary>
Sets the gearing ratio for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetRatio(System.Int32,System.Double,System.String)">
<summary>
Sets the gearing ratio for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.GearingSetRatio(System.String,System.Double,System.String)">
<summary>
Sets the gearing ratio for an axis.
Executes on the specified task.
</summary>
<param name="followerAxis">The axis on which to set the gear ratio.</param>
<param name="gearRatio">The scale factor applied to the motion of the follower axis, specified as the ratio of follower axis counts to leader axis counts. A negative gear ratio will cause the follower axis to move in the opposite direction of the motion of the leader axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveOutOfLimit(System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveOutOfLimit(System.String)">
<summary>
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveOutOfLimit(System.Int32,System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveOutOfLimit(System.String,System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveOutOfLimit(System.Int32,System.String)">
<summary>
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveOutOfLimit(System.String,System.String)">
<summary>
Executes an asynchronous move on an axis to move it out of a limit condition.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCcw(System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCcw(System.String)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCcw(System.Int32,System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCcw(System.String,System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCcw(System.Int32,System.String)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCcw(System.String,System.String)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the counterclockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCw(System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCw(System.String)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on task 1.
</summary>
<param name="axis">The axis on which to perform the move.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCw(System.Int32,System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCw(System.String,System.Int32)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCw(System.Int32,System.String)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.MoveToLimitCw(System.String,System.String)">
<summary>
Executes an asynchronous move on an axis to move it into a limit condition in the clockwise direction.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to perform the move.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcyOff">
<summary>
Disables normalcy mode.
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcyOff(System.Int32)">
<summary>
Disables normalcy mode.
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcyOff(System.String)">
<summary>
Disables normalcy mode.
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcyOn(Aerotech.Automation1.DotNet.NormalcyAlignment)">
<summary>
Enables normalcy mode.
Executes on task 1.
</summary>
<param name="normalcyAlignment">The type of the normalcy mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcyOn(Aerotech.Automation1.DotNet.NormalcyAlignment,System.Int32)">
<summary>
Enables normalcy mode.
Executes on the specified task.
</summary>
<param name="normalcyAlignment">The type of the normalcy mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcyOn(Aerotech.Automation1.DotNet.NormalcyAlignment,System.String)">
<summary>
Enables normalcy mode.
Executes on the specified task.
</summary>
<param name="normalcyAlignment">The type of the normalcy mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetAxes(System.Int32,System.Int32[])">
<summary>
Configures the axes to use for normalcy mode.
Executes on task 1.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetAxes(System.String,System.String[])">
<summary>
Configures the axes to use for normalcy mode.
Executes on task 1.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetAxes(System.Int32,System.Int32[],System.Int32)">
<summary>
Configures the axes to use for normalcy mode.
Executes on the specified task.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetAxes(System.String,System.String[],System.Int32)">
<summary>
Configures the axes to use for normalcy mode.
Executes on the specified task.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetAxes(System.Int32,System.Int32[],System.String)">
<summary>
Configures the axes to use for normalcy mode.
Executes on the specified task.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetAxes(System.String,System.String[],System.String)">
<summary>
Configures the axes to use for normalcy mode.
Executes on the specified task.
</summary>
<param name="normalcyAxis">The normalcy axis. This must be a dependent type axis.</param>
<param name="planeAxes">The axes to use as the X and Y axes of the normalcy plane. These axes must be dominant type axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetTolerance(System.Double)">
<summary>
Configures the tolerance to use for normalcy mode.
Executes on task 1.
</summary>
<param name="tolerance">The normalcy mode tolerance, in degrees.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetTolerance(System.Double,System.Int32)">
<summary>
Configures the tolerance to use for normalcy mode.
Executes on the specified task.
</summary>
<param name="tolerance">The normalcy mode tolerance, in degrees.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AdvancedMotionCommands.NormalcySetTolerance(System.Double,System.String)">
<summary>
Configures the tolerance to use for normalcy mode.
Executes on the specified task.
</summary>
<param name="tolerance">The normalcy mode tolerance, in degrees.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands">
<summary>
A class to execute ServoLoopTuning AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.Int32,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[])">
<summary>
Sets the specified feedforward gain values on the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.String,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[])">
<summary>
Sets the specified feedforward gain values on the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.Int32,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[],System.Int32)">
<summary>
Sets the specified feedforward gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.String,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[],System.Int32)">
<summary>
Sets the specified feedforward gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.Int32,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[],System.String)">
<summary>
Sets the specified feedforward gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetFeedforwardGains(System.String,Aerotech.Automation1.DotNet.FeedforwardGain[],System.Double[],System.String)">
<summary>
Sets the specified feedforward gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="feedforwardGains">An array of feedforward gains to set.</param>
<param name="feedforwardGainValues">An array of feedforward gain values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorAngle(System.Int32,System.Double,System.Double)">
<summary>
Generates an open-loop current command at a fixed electrical angle.
Executes on task 1.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorAngle(System.String,System.Double,System.Double)">
<summary>
Generates an open-loop current command at a fixed electrical angle.
Executes on task 1.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorAngle(System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Generates an open-loop current command at a fixed electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorAngle(System.String,System.Double,System.Double,System.Int32)">
<summary>
Generates an open-loop current command at a fixed electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorAngle(System.Int32,System.Double,System.Double,System.String)">
<summary>
Generates an open-loop current command at a fixed electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorAngle(System.String,System.Double,System.Double,System.String)">
<summary>
Generates an open-loop current command at a fixed electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="angle">The electrical angle, specified in degrees. 360 degrees is one electrical commutation cycle of the motor.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on task 1.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on task 1.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double,System.Int32)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double,System.Int32)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double,System.String)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double,System.String)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double,System.Int64)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on task 1.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double,System.Int64)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on task 1.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double,System.Int64,System.Int32)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double,System.Int64,System.Int32)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.Int32,System.Double,System.Int64,System.String)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetMotorCurrent(System.String,System.Double,System.Int64,System.String)">
<summary>
Generates an open-loop current command at a rotating electrical angle.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to command current.</param>
<param name="current">The current to output, specified in amperes.</param>
<param name="duration">The amount of time to output current, specified in milliseconds. Specify 0 to output current continuously.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.Int32,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[])">
<summary>
Sets the specified servo loop gain values on the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.String,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[])">
<summary>
Sets the specified servo loop gain values on the specified axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.Int32,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[],System.Int32)">
<summary>
Sets the specified servo loop gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.String,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[],System.Int32)">
<summary>
Sets the specified servo loop gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.Int32,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[],System.String)">
<summary>
Sets the specified servo loop gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.ServoLoopTuningCommands.TuningSetServoLoopGains(System.String,Aerotech.Automation1.DotNet.ServoLoopGain[],System.Double[],System.String)">
<summary>
Sets the specified servo loop gain values on the specified axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the gain values.</param>
<param name="servoGains">An array of servo loop gains to set.</param>
<param name="servoGainValues">An array of servo loop gain values to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.GalvoCommands">
<summary>
A class to execute Galvo AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.Int32,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.String,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.Int32,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.String,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.Int32,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser1PulseWidth(System.String,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the O1 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 1 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.Int32,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.String,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.Int32,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.String,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.Int32,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaser2PulseWidth(System.String,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the O2 signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser 2 pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserDelays(System.Int32,System.Double,System.Double)">
<summary>
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserDelays(System.String,System.Double,System.Double)">
<summary>
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserDelays(System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserDelays(System.String,System.Double,System.Double,System.Int32)">
<summary>
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserDelays(System.Int32,System.Double,System.Double,System.String)">
<summary>
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserDelays(System.String,System.Double,System.Double,System.String)">
<summary>
Specifies when the axis fires the laser relative to when you command the laser to power on and when the axis stops firing the laser relative to when you command the laser to power off.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure laser delays.</param>
<param name="onDelay">The delay time, in microseconds, that is necessary for the laser to power on. If your program uses the automatic laser mode, this value must be greater than or equal to -32,768 and less than or equal to 32,767. If your program uses the manual laser mode or if you are operating in IFOV mode, this value must be greater than or equal to -975 and less than or equal to 32,767.</param>
<param name="offDelay">The delay time, in microseconds, that is necessary for the laser to power off. This value must be greater than or equal to -975 and less than or equal to 2,000,000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserMode(System.Int32,System.Int64)">
<summary>
Specifies the mode in which the laser output signals operate.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserMode(System.String,System.Int64)">
<summary>
Specifies the mode in which the laser output signals operate.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserMode(System.Int32,System.Int64,System.Int32)">
<summary>
Specifies the mode in which the laser output signals operate.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserMode(System.String,System.Int64,System.Int32)">
<summary>
Specifies the mode in which the laser output signals operate.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserMode(System.Int32,System.Int64,System.String)">
<summary>
Specifies the mode in which the laser output signals operate.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserMode(System.String,System.Int64,System.String)">
<summary>
Specifies the mode in which the laser output signals operate.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser mode.</param>
<param name="laserMode">The value of the laser output mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.Int32,System.Double)">
<summary>
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.String,System.Double)">
<summary>
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.Int32,System.Double,System.Int32)">
<summary>
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.String,System.Double,System.Int32)">
<summary>
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.Int32,System.Double,System.String)">
<summary>
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureLaserOutputPeriod(System.String,System.Double,System.String)">
<summary>
Specifies the period, in microseconds, of the O1 and O2 signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser output period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPeriod(System.Int32,System.Double)">
<summary>
Specifies the period, in microseconds, of the standby signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPeriod(System.String,System.Double)">
<summary>
Specifies the period, in microseconds, of the standby signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPeriod(System.Int32,System.Double,System.Int32)">
<summary>
Specifies the period, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPeriod(System.String,System.Double,System.Int32)">
<summary>
Specifies the period, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPeriod(System.Int32,System.Double,System.String)">
<summary>
Specifies the period, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPeriod(System.String,System.Double,System.String)">
<summary>
Specifies the period, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby period.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.Int32,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the standby signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.String,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the standby signals.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.Int32,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.String,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.Int32,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureStandbyPulseWidth(System.String,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the standby signals.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the standby pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.Int32,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.String,System.Double)">
<summary>
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.Int32,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.String,System.Double,System.Int32)">
<summary>
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.Int32,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoConfigureSuppressionPulseWidth(System.String,System.Double,System.String)">
<summary>
Specifies the pulse width, in microseconds, of the suppression signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the suppression pulse width.</param>
<param name="time">The time value in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoEncoderScaleFactorSet(System.Int32,System.Double)">
<summary>
Enables "marking on the fly" functionality.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoEncoderScaleFactorSet(System.String,System.Double)">
<summary>
Enables "marking on the fly" functionality.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoEncoderScaleFactorSet(System.Int32,System.Double,System.Int32)">
<summary>
Enables "marking on the fly" functionality.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoEncoderScaleFactorSet(System.String,System.Double,System.Int32)">
<summary>
Enables "marking on the fly" functionality.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoEncoderScaleFactorSet(System.Int32,System.Double,System.String)">
<summary>
Enables "marking on the fly" functionality.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoEncoderScaleFactorSet(System.String,System.Double,System.String)">
<summary>
Enables "marking on the fly" functionality.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the encoder scale factor.</param>
<param name="encoderScaleFactor">The ratio of scanner counts to encoder counts. This value must be greater than -32,768 and less than 32,767.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoLaserOutput(System.Int32,Aerotech.Automation1.DotNet.GalvoLaser)">
<summary>
Specifies how the laser on a galvo axis is controlled.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoLaserOutput(System.String,Aerotech.Automation1.DotNet.GalvoLaser)">
<summary>
Specifies how the laser on a galvo axis is controlled.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoLaserOutput(System.Int32,Aerotech.Automation1.DotNet.GalvoLaser,System.Int32)">
<summary>
Specifies how the laser on a galvo axis is controlled.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoLaserOutput(System.String,Aerotech.Automation1.DotNet.GalvoLaser,System.Int32)">
<summary>
Specifies how the laser on a galvo axis is controlled.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoLaserOutput(System.Int32,Aerotech.Automation1.DotNet.GalvoLaser,System.String)">
<summary>
Specifies how the laser on a galvo axis is controlled.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoLaserOutput(System.String,Aerotech.Automation1.DotNet.GalvoLaser,System.String)">
<summary>
Specifies how the laser on a galvo axis is controlled.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the laser state.</param>
<param name="laserState">The mode to use to control the laser.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOff(System.Int32)">
<summary>
Disables the projective transformation on galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOff(System.String)">
<summary>
Disables the projective transformation on galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOff(System.Int32,System.Int32)">
<summary>
Disables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOff(System.String,System.Int32)">
<summary>
Disables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOff(System.Int32,System.String)">
<summary>
Disables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOff(System.String,System.String)">
<summary>
Disables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to disable the projection.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOn(System.Int32)">
<summary>
Enables the projective transformation on galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOn(System.String)">
<summary>
Enables the projective transformation on galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOn(System.Int32,System.Int32)">
<summary>
Enables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOn(System.String,System.Int32)">
<summary>
Enables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOn(System.Int32,System.String)">
<summary>
Enables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionOn(System.String,System.String)">
<summary>
Enables the projective transformation on galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which to apply the projection.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionSetCoefficients(System.Int32,System.Double[])">
<summary>
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionSetCoefficients(System.String,System.Double[])">
<summary>
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionSetCoefficients(System.Int32,System.Double[],System.Int32)">
<summary>
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionSetCoefficients(System.String,System.Double[],System.Int32)">
<summary>
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionSetCoefficients(System.Int32,System.Double[],System.String)">
<summary>
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoProjectionSetCoefficients(System.String,System.Double[],System.String)">
<summary>
Specifies the projective transformation coefficients that are applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the projection is to be applied.</param>
<param name="coefficients">The coefficients to use.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoRotationSet(System.Int32,System.Double)">
<summary>
Specifies an angle of rotation that is applied to galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoRotationSet(System.String,System.Double)">
<summary>
Specifies an angle of rotation that is applied to galvo axes.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoRotationSet(System.Int32,System.Double,System.Int32)">
<summary>
Specifies an angle of rotation that is applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoRotationSet(System.String,System.Double,System.Int32)">
<summary>
Specifies an angle of rotation that is applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoRotationSet(System.Int32,System.Double,System.String)">
<summary>
Specifies an angle of rotation that is applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoRotationSet(System.String,System.Double,System.String)">
<summary>
Specifies an angle of rotation that is applied to galvo axes.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the rotation is to be applied.</param>
<param name="angle">The angle in degrees.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOff(System.Int32)">
<summary>
Disables the galvo wobble feature.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOff(System.String)">
<summary>
Disables the galvo wobble feature.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOff(System.Int32,System.Int32)">
<summary>
Disables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOff(System.String,System.Int32)">
<summary>
Disables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOff(System.Int32,System.String)">
<summary>
Disables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOff(System.String,System.String)">
<summary>
Disables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be disabled.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOn(System.Int32)">
<summary>
Enables the galvo wobble feature.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOn(System.String)">
<summary>
Enables the galvo wobble feature.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOn(System.Int32,System.Int32)">
<summary>
Enables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOn(System.String,System.Int32)">
<summary>
Enables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOn(System.Int32,System.String)">
<summary>
Enables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleOn(System.String,System.String)">
<summary>
Enables the galvo wobble feature.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleSetConfiguration(System.Int32,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType)">
<summary>
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleSetConfiguration(System.String,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType)">
<summary>
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on task 1.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleSetConfiguration(System.Int32,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType,System.Int32)">
<summary>
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleSetConfiguration(System.String,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType,System.Int32)">
<summary>
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleSetConfiguration(System.Int32,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType,System.String)">
<summary>
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.GalvoWobbleSetConfiguration(System.String,System.Double,System.Double,System.Double,Aerotech.Automation1.DotNet.GalvoWobbleMode,Aerotech.Automation1.DotNet.GalvoWobbleType,System.String)">
<summary>
Configures the wobble feature, which generates a wobble pattern that is added to the motion command of a galvo axis.
Executes on the specified task.
</summary>
<param name="axis">The galvo axis on which the galvo wobble is to be applied.</param>
<param name="amplitudeParallel">The amplitude of the wobble shape parallel to the vector path.</param>
<param name="amplitudePerpendicular">The amplitude of the wobble shape perpendicular to the vector path.</param>
<param name="frequency">The frequency of the wobble oscillation. Specified in hertz for time-based mode or user units for distance-based mode.</param>
<param name="wobbleMode">Specifies whether the wobble is repeated based on a fixed time or a fixed vector distance.</param>
<param name="wobbleType">The type of figure that is generated by the wobble.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovOff">
<summary>
Disables Infinite Field of View (IFOV).
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovOff(System.Int32)">
<summary>
Disables Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovOff(System.String)">
<summary>
Disables Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovOn">
<summary>
Enables Infinite Field of View (IFOV).
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovOn(System.Int32)">
<summary>
Enables Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovOn(System.String)">
<summary>
Enables Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[])">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[])">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[],System.Int32)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[],System.Int32)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[],System.String)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[],System.String)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[],System.Double,System.Double)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[],System.Double,System.Double)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[],System.Double,System.Double,System.Int32)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[],System.Double,System.Double,System.Int32)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.Int32[],System.Int32[],System.Double,System.Double,System.String)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetAxisPairs(System.String[],System.String[],System.Double,System.Double,System.String)">
<summary>
Configures axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axisPairH">The horizontal axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="axisPairV">The vertical axis pair. This pair consists of a galvo axis and its corresponding servo axis.</param>
<param name="scaleFactorH">Specifies the scaling from the servo axis to the galvo axis in the horizontal axis pair.</param>
<param name="scaleFactorV">Specifies the scaling from the servo axis to the galvo axis in the vertical axis pair.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSize(System.Double)">
<summary>
Configures the field of view size of the galvo head in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="size">The field of view size, in user units, of the galvo head.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSize(System.Double,System.Int32)">
<summary>
Configures the field of view size of the galvo head in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="size">The field of view size, in user units, of the galvo head.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSize(System.Double,System.String)">
<summary>
Configures the field of view size of the galvo head in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="size">The field of view size, in user units, of the galvo head.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSyncAxes(System.Int32[])">
<summary>
Configures more axes to command in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSyncAxes(System.String[])">
<summary>
Configures more axes to command in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSyncAxes(System.Int32[],System.Int32)">
<summary>
Configures more axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSyncAxes(System.String[],System.Int32)">
<summary>
Configures more axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSyncAxes(System.Int32[],System.String)">
<summary>
Configures more axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetSyncAxes(System.String[],System.String)">
<summary>
Configures more axes to command in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="axes">A list of axes to synchronize in Infinite Field of View in addition to those specified in IfovSetAxisPairs().</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTime(System.Int64)">
<summary>
Configures the maximum search time that the controller looks ahead in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="time">The time, in milliseconds, that the controller looks ahead.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTime(System.Int64,System.Int32)">
<summary>
Configures the maximum search time that the controller looks ahead in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="time">The time, in milliseconds, that the controller looks ahead.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTime(System.Int64,System.String)">
<summary>
Configures the maximum search time that the controller looks ahead in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="time">The time, in milliseconds, that the controller looks ahead.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTrackingAcceleration(System.Double)">
<summary>
Configures the maximum acceleration of the servo axes while in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="acceleration">The maximum acceleration, in user units/second squared, of the servo axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTrackingAcceleration(System.Double,System.Int32)">
<summary>
Configures the maximum acceleration of the servo axes while in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="acceleration">The maximum acceleration, in user units/second squared, of the servo axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTrackingAcceleration(System.Double,System.String)">
<summary>
Configures the maximum acceleration of the servo axes while in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="acceleration">The maximum acceleration, in user units/second squared, of the servo axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTrackingSpeed(System.Double)">
<summary>
Configures the maximum speed of the servo axes while in Infinite Field of View (IFOV).
Executes on task 1.
</summary>
<param name="speed">The maximum speed, in user units/time base, of the servo axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTrackingSpeed(System.Double,System.Int32)">
<summary>
Configures the maximum speed of the servo axes while in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="speed">The maximum speed, in user units/time base, of the servo axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.GalvoCommands.IfovSetTrackingSpeed(System.Double,System.String)">
<summary>
Configures the maximum speed of the servo axes while in Infinite Field of View (IFOV).
Executes on the specified task.
</summary>
<param name="speed">The maximum speed, in user units/time base, of the servo axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands">
<summary>
A class to execute FaultAndError AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.AcknowledgeAll">
<summary>
Acknowledges all axis faults and clears all task errors.
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.AcknowledgeAll(System.Int32)">
<summary>
Acknowledges all axis faults and clears all task errors.
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.AcknowledgeAll(System.String)">
<summary>
Acknowledges all axis faults and clears all task errors.
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.Int32)">
<summary>
Acknowledges faults on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to acknowledge faults.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.String)">
<summary>
Acknowledges faults on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to acknowledge faults.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.Int32,System.Int32)">
<summary>
Acknowledges faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to acknowledge faults.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.String,System.Int32)">
<summary>
Acknowledges faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to acknowledge faults.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.Int32,System.String)">
<summary>
Acknowledges faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to acknowledge faults.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.String,System.String)">
<summary>
Acknowledges faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to acknowledge faults.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.Int32[])">
<summary>
Acknowledges faults on axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to acknowledge faults.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.String[])">
<summary>
Acknowledges faults on axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to acknowledge faults.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.Int32[],System.Int32)">
<summary>
Acknowledges faults on axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to acknowledge faults.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.String[],System.Int32)">
<summary>
Acknowledges faults on axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to acknowledge faults.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.Int32[],System.String)">
<summary>
Acknowledges faults on axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to acknowledge faults.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultAcknowledge(System.String[],System.String)">
<summary>
Acknowledges faults on axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to acknowledge faults.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultThrow(System.Int32,System.Int64)">
<summary>
Causes faults on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to cause faults.</param>
<param name="faultMask">The mask of faults to cause on the axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultThrow(System.String,System.Int64)">
<summary>
Causes faults on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to cause faults.</param>
<param name="faultMask">The mask of faults to cause on the axis.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultThrow(System.Int32,System.Int64,System.Int32)">
<summary>
Causes faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause faults.</param>
<param name="faultMask">The mask of faults to cause on the axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultThrow(System.String,System.Int64,System.Int32)">
<summary>
Causes faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause faults.</param>
<param name="faultMask">The mask of faults to cause on the axis.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultThrow(System.Int32,System.Int64,System.String)">
<summary>
Causes faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause faults.</param>
<param name="faultMask">The mask of faults to cause on the axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.FaultThrow(System.String,System.Int64,System.String)">
<summary>
Causes faults on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause faults.</param>
<param name="faultMask">The mask of faults to cause on the axis.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskClearError(System.Int64)">
<summary>
Clears the task error that is set on the given task.
Executes on task 1.
</summary>
<param name="taskIndex">The task index on which to clear the task error.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskClearError(System.Int64,System.Int32)">
<summary>
Clears the task error that is set on the given task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task index on which to clear the task error.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskClearError(System.Int64,System.String)">
<summary>
Clears the task error that is set on the given task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task index on which to clear the task error.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskClearWarning(System.Int64)">
<summary>
Clears the task warning that is set on the given task.
Executes on task 1.
</summary>
<param name="taskIndex">The task index on which to clear the task warning.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskClearWarning(System.Int64,System.Int32)">
<summary>
Clears the task warning that is set on the given task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task index on which to clear the task warning.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskClearWarning(System.Int64,System.String)">
<summary>
Clears the task warning that is set on the given task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task index on which to clear the task warning.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetError(System.Int64,System.Int64)">
<summary>
Causes a specified task error on a task.
Executes on task 1.
</summary>
<param name="taskIndex">The task on which to cause a task error.</param>
<param name="error">The task error to cause. Specify 0 to clear the current task error.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetError(System.Int64,System.Int64,System.Int32)">
<summary>
Causes a specified task error on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task error.</param>
<param name="error">The task error to cause. Specify 0 to clear the current task error.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetError(System.Int64,System.Int64,System.String)">
<summary>
Causes a specified task error on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task error.</param>
<param name="error">The task error to cause. Specify 0 to clear the current task error.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetError(System.Int64,System.String)">
<summary>
Causes a task error with the specified message on a task.
Executes on task 1.
</summary>
<param name="taskIndex">The task on which to cause a task error.</param>
<param name="errorMessage">The error message to display.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetError(System.Int64,System.String,System.Int32)">
<summary>
Causes a task error with the specified message on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task error.</param>
<param name="errorMessage">The error message to display.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetError(System.Int64,System.String,System.String)">
<summary>
Causes a task error with the specified message on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task error.</param>
<param name="errorMessage">The error message to display.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetWarning(System.Int64,System.Int64)">
<summary>
Causes a specified task warning on a task.
Executes on task 1.
</summary>
<param name="taskIndex">The task on which to cause a task warning.</param>
<param name="warning">The task warning to cause. Specify 0 to clear the current task warning.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetWarning(System.Int64,System.Int64,System.Int32)">
<summary>
Causes a specified task warning on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task warning.</param>
<param name="warning">The task warning to cause. Specify 0 to clear the current task warning.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetWarning(System.Int64,System.Int64,System.String)">
<summary>
Causes a specified task warning on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task warning.</param>
<param name="warning">The task warning to cause. Specify 0 to clear the current task warning.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetWarning(System.Int64,System.String)">
<summary>
Causes a task warning with the specified message on a task.
Executes on task 1.
</summary>
<param name="taskIndex">The task on which to cause a task warning.</param>
<param name="warningMessage">The warning message to display.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetWarning(System.Int64,System.String,System.Int32)">
<summary>
Causes a task warning with the specified message on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task warning.</param>
<param name="warningMessage">The warning message to display.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.FaultAndErrorCommands.TaskSetWarning(System.Int64,System.String,System.String)">
<summary>
Causes a task warning with the specified message on a task.
Executes on the specified task.
</summary>
<param name="taskIndex">The task on which to cause a task warning.</param>
<param name="warningMessage">The warning message to display.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands">
<summary>
A class to execute MotionSetup AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Int32)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Int32)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.String)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.String)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Int32)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Int32)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.String)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.String)">
<summary>
Sets a ramp type for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String,Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.Int32[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampType(System.String[],Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a ramp type along with a ramp type value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp type.</param>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for both accelerations and decelerations simultaneously for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String,Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for accelerations and decelerations separately for an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.Int32[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisRampValue(System.String[],Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a ramp value for accelerations and decelerations separately for axes.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the ramp value.</param>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.Int32,System.Double)">
<summary>
Sets the speed of an axis for MoveRapid() motion.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.String,System.Double)">
<summary>
Sets the speed of an axis for MoveRapid() motion.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.Int32,System.Double,System.Int32)">
<summary>
Sets the speed of an axis for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.String,System.Double,System.Int32)">
<summary>
Sets the speed of an axis for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.Int32,System.Double,System.String)">
<summary>
Sets the speed of an axis for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.String,System.Double,System.String)">
<summary>
Sets the speed of an axis for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the speed.</param>
<param name="speed">The speed to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.Int32[],System.Double[])">
<summary>
Sets the speeds of axes for MoveRapid() motion.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.String[],System.Double[])">
<summary>
Sets the speeds of axes for MoveRapid() motion.
Executes on task 1.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.Int32[],System.Double[],System.Int32)">
<summary>
Sets the speeds of axes for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.String[],System.Double[],System.Int32)">
<summary>
Sets the speeds of axes for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.Int32[],System.Double[],System.String)">
<summary>
Sets the speeds of axes for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupAxisSpeed(System.String[],System.Double[],System.String)">
<summary>
Sets the speeds of axes for MoveRapid() motion.
Executes on the specified task.
</summary>
<param name="axes">The axes on which to set the speed.</param>
<param name="speeds">The speeds to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedAccelLimit(System.Double,System.Double)">
<summary>
Sets the maximum acceleration of coordinated motion on dominant axes on the current task.
Executes on task 1.
</summary>
<param name="accelLimitNonTangent">The maximum acceleration of axes at non-tangent portions of a motion path.</param>
<param name="accelLimitCircular">The maximum acceleration of axes at curved parts of a motion path.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedAccelLimit(System.Double,System.Double,System.Int32)">
<summary>
Sets the maximum acceleration of coordinated motion on dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="accelLimitNonTangent">The maximum acceleration of axes at non-tangent portions of a motion path.</param>
<param name="accelLimitCircular">The maximum acceleration of axes at curved parts of a motion path.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedAccelLimit(System.Double,System.Double,System.String)">
<summary>
Sets the maximum acceleration of coordinated motion on dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="accelLimitNonTangent">The maximum acceleration of axes at non-tangent portions of a motion path.</param>
<param name="accelLimitCircular">The maximum acceleration of axes at curved parts of a motion path.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType)">
<summary>
Sets a coordinated ramp type for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on task 1.
</summary>
<param name="rampType">The ramping type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Int32)">
<summary>
Sets a coordinated ramp type for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.String)">
<summary>
Sets a coordinated ramp type for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampType">The ramping type to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a coordinated ramp type along with a ramp type value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on task 1.
</summary>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a coordinated ramp type along with a ramp type value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a coordinated ramp type along with a ramp type value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampType">The ramping type to set.</param>
<param name="rampTypeArg">The ramping type additional argument. This is only used when $rampType is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double)">
<summary>
Sets a coordinated ramp type along with a ramp type value for accelerations and decelerations separately for dominant axes on the current task.
Executes on task 1.
</summary>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.Int32)">
<summary>
Sets a coordinated ramp type along with a ramp type value for accelerations and decelerations separately for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampType(Aerotech.Automation1.DotNet.RampType,System.Double,Aerotech.Automation1.DotNet.RampType,System.Double,System.String)">
<summary>
Sets a coordinated ramp type along with a ramp type value for accelerations and decelerations separately for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampTypeAccel">The ramping type to set during accelerations.</param>
<param name="rampTypeArgAccel">The ramping type additional argument for accelerations. This is only used when $rampTypeAccel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="rampTypeDecel">The ramping type to set during decelerations.</param>
<param name="rampTypeArgDecel">The ramping type additional argument for decelerations. This is only used when $rampTypeDecel is RampType.SCurve and represents the s-curve percentage.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a coordinated ramp value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on task 1.
</summary>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a coordinated ramp value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a coordinated ramp value for both accelerations and decelerations simultaneously for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampMode">The ramping mode to set.</param>
<param name="rampValue">The ramp value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double)">
<summary>
Sets a coordinated ramp value for accelerations and decelerations separately for dominant axes on the current task.
Executes on task 1.
</summary>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.Int32)">
<summary>
Sets a coordinated ramp value for accelerations and decelerations separately for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedRampValue(Aerotech.Automation1.DotNet.RampMode,System.Double,Aerotech.Automation1.DotNet.RampMode,System.Double,System.String)">
<summary>
Sets a coordinated ramp value for accelerations and decelerations separately for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="rampModeAccel">The ramping mode to set during accelerations.</param>
<param name="rampValueAccel">The ramp value to set during accelerations.</param>
<param name="rampModeDecel">The ramping mode to set during decelerations.</param>
<param name="rampValueDecel">The ramp value to set during decelerations.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedSpeed(System.Double)">
<summary>
Sets the coordinated speed for dominant axes on the current task.
Executes on task 1.
</summary>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedSpeed(System.Double,System.Int32)">
<summary>
Sets the coordinated speed for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="speed">The speed to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupCoordinatedSpeed(System.Double,System.String)">
<summary>
Sets the coordinated speed for dominant axes on the current task.
Executes on the specified task.
</summary>
<param name="speed">The speed to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedAccelLimit(System.Double)">
<summary>
Sets the maximum acceleration of coordinated motion on dependent axes on the current task.
Executes on task 1.
</summary>
<param name="accelLimitDependent">The maximum acceleration of axes at all portions of a motion path.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedAccelLimit(System.Double,System.Int32)">
<summary>
Sets the maximum acceleration of coordinated motion on dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="accelLimitDependent">The maximum acceleration of axes at all portions of a motion path.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedAccelLimit(System.Double,System.String)">
<summary>
Sets the maximum acceleration of coordinated motion on dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="accelLimitDependent">The maximum acceleration of axes at all portions of a motion path.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double)">
<summary>
Sets a coordinated ramp rate for both accelerations and decelerations simultaneously for dependent axes on the current task.
Executes on task 1.
</summary>
<param name="rampValue">The ramp rate value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double,System.Int32)">
<summary>
Sets a coordinated ramp rate for both accelerations and decelerations simultaneously for dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="rampValue">The ramp rate value to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double,System.String)">
<summary>
Sets a coordinated ramp rate for both accelerations and decelerations simultaneously for dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="rampValue">The ramp rate value to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double,System.Double)">
<summary>
Sets a coordinated ramp rate for accelerations and decelerations separately for dependent axes on the current task.
Executes on task 1.
</summary>
<param name="rampValueAccel">The ramp rate value to set during accelerations.</param>
<param name="rampValueDecel">The ramp rate value to set during decelerations.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double,System.Double,System.Int32)">
<summary>
Sets a coordinated ramp rate for accelerations and decelerations separately for dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="rampValueAccel">The ramp rate value to set during accelerations.</param>
<param name="rampValueDecel">The ramp rate value to set during decelerations.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedRampRate(System.Double,System.Double,System.String)">
<summary>
Sets a coordinated ramp rate for accelerations and decelerations separately for dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="rampValueAccel">The ramp rate value to set during accelerations.</param>
<param name="rampValueDecel">The ramp rate value to set during decelerations.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedSpeed(System.Double)">
<summary>
Sets the coordinated speed for dependent axes on the current task.
Executes on task 1.
</summary>
<param name="speed">The speed to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedSpeed(System.Double,System.Int32)">
<summary>
Sets the coordinated speed for dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="speed">The speed to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupDependentCoordinatedSpeed(System.Double,System.String)">
<summary>
Sets the coordinated speed for dependent axes on the current task.
Executes on the specified task.
</summary>
<param name="speed">The speed to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskDistanceUnits(Aerotech.Automation1.DotNet.DistanceUnits)">
<summary>
Sets the distance units of the current task.
Executes on task 1.
</summary>
<param name="distanceUnits">The distance units to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskDistanceUnits(Aerotech.Automation1.DotNet.DistanceUnits,System.Int32)">
<summary>
Sets the distance units of the current task.
Executes on the specified task.
</summary>
<param name="distanceUnits">The distance units to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskDistanceUnits(Aerotech.Automation1.DotNet.DistanceUnits,System.String)">
<summary>
Sets the distance units of the current task.
Executes on the specified task.
</summary>
<param name="distanceUnits">The distance units to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskTargetMode(Aerotech.Automation1.DotNet.TargetMode)">
<summary>
Sets the target mode of the current task.
Executes on task 1.
</summary>
<param name="targetMode">The target mode to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskTargetMode(Aerotech.Automation1.DotNet.TargetMode,System.Int32)">
<summary>
Sets the target mode of the current task.
Executes on the specified task.
</summary>
<param name="targetMode">The target mode to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskTargetMode(Aerotech.Automation1.DotNet.TargetMode,System.String)">
<summary>
Sets the target mode of the current task.
Executes on the specified task.
</summary>
<param name="targetMode">The target mode to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskTimeUnits(Aerotech.Automation1.DotNet.TimeUnits)">
<summary>
Sets the time units of the current task.
Executes on task 1.
</summary>
<param name="timeUnits">The time units to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskTimeUnits(Aerotech.Automation1.DotNet.TimeUnits,System.Int32)">
<summary>
Sets the time units of the current task.
Executes on the specified task.
</summary>
<param name="timeUnits">The time units to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskTimeUnits(Aerotech.Automation1.DotNet.TimeUnits,System.String)">
<summary>
Sets the time units of the current task.
Executes on the specified task.
</summary>
<param name="timeUnits">The time units to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskWaitMode(Aerotech.Automation1.DotNet.WaitMode)">
<summary>
Sets the wait mode of the current task.
Executes on task 1.
</summary>
<param name="waitMode">The wait mode to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskWaitMode(Aerotech.Automation1.DotNet.WaitMode,System.Int32)">
<summary>
Sets the wait mode of the current task.
Executes on the specified task.
</summary>
<param name="waitMode">The wait mode to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.MotionSetupCommands.SetupTaskWaitMode(Aerotech.Automation1.DotNet.WaitMode,System.String)">
<summary>
Sets the wait mode of the current task.
Executes on the specified task.
</summary>
<param name="waitMode">The wait mode to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands">
<summary>
A class to execute SafeZone AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.Int32,System.Double,System.Double)">
<summary>
Adds a boundary to the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.String,System.Double,System.Double)">
<summary>
Adds a boundary to the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Adds a boundary to the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.String,System.Double,System.Double,System.Int32)">
<summary>
Adds a boundary to the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.Int32,System.Double,System.Double,System.String)">
<summary>
Adds a boundary to the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryAdd(System.Int64,System.String,System.Double,System.Double,System.String)">
<summary>
Adds a boundary to the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to add a boundary.</param>
<param name="axis">The axis that represents the boundary to add.</param>
<param name="lowerBound">The safe zone lower boundary, specified in user units.</param>
<param name="upperBound">The safe zone upper boundary, specified in user units.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.Int32)">
<summary>
Removes the specified boundary from the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.String)">
<summary>
Removes the specified boundary from the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.Int32,System.Int32)">
<summary>
Removes the specified boundary from the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.String,System.Int32)">
<summary>
Removes the specified boundary from the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.Int32,System.String)">
<summary>
Removes the specified boundary from the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemove(System.Int64,System.String,System.String)">
<summary>
Removes the specified boundary from the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to remove a boundary.</param>
<param name="axis">The axis that represents the boundary to remove.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemoveAll(System.Int64)">
<summary>
Removes all boundaries from the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The index of the safe zone on which to remove all boundaries.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemoveAll(System.Int64,System.Int32)">
<summary>
Removes all boundaries from the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to remove all boundaries.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneBoundaryRemoveAll(System.Int64,System.String)">
<summary>
Removes all boundaries from the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The index of the safe zone on which to remove all boundaries.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneOff(System.Int64)">
<summary>
Disables the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The safe zone to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneOff(System.Int64,System.Int32)">
<summary>
Disables the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The safe zone to disable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneOff(System.Int64,System.String)">
<summary>
Disables the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The safe zone to disable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneOn(System.Int64)">
<summary>
Enables the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The safe zone to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneOn(System.Int64,System.Int32)">
<summary>
Enables the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The safe zone to enable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneOn(System.Int64,System.String)">
<summary>
Enables the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The safe zone to enable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneSetType(System.Int64,Aerotech.Automation1.DotNet.SafeZoneType)">
<summary>
Sets the safe zone type for the specified safe zone.
Executes on task 1.
</summary>
<param name="zone">The safe zone on which to set the safe zone type.</param>
<param name="zoneType">The safe zone type to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneSetType(System.Int64,Aerotech.Automation1.DotNet.SafeZoneType,System.Int32)">
<summary>
Sets the safe zone type for the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The safe zone on which to set the safe zone type.</param>
<param name="zoneType">The safe zone type to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.SafeZoneCommands.SafeZoneSetType(System.Int64,Aerotech.Automation1.DotNet.SafeZoneType,System.String)">
<summary>
Sets the safe zone type for the specified safe zone.
Executes on the specified task.
</summary>
<param name="zone">The safe zone on which to set the safe zone type.</param>
<param name="zoneType">The safe zone type to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.TransformationCommands">
<summary>
A class to execute Transformation AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationDisable(System.String)">
<summary>
Disable a C transformation. This will stop running inverse and forward computations for this transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationDisable(System.String,System.Int32)">
<summary>
Disable a C transformation. This will stop running inverse and forward computations for this transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationDisable(System.String,System.String)">
<summary>
Disable a C transformation. This will stop running inverse and forward computations for this transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationDisable(System.String[])">
<summary>
Disable multiple C transformations simultaneously. This will stop running inverse and forward computations for the specified transformations.
Executes on task 1.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationDisable(System.String[],System.Int32)">
<summary>
Disable multiple C transformations simultaneously. This will stop running inverse and forward computations for the specified transformations.
Executes on the specified task.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationDisable(System.String[],System.String)">
<summary>
Disable multiple C transformations simultaneously. This will stop running inverse and forward computations for the specified transformations.
Executes on the specified task.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationEnable(System.String)">
<summary>
Enable a C transformation. This will begin running inverse and forward computations for the specified transformation. All axes part of the transformation must be enabled at any time the transformation is enabled. If the transformation is enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationEnable(System.String,System.Int32)">
<summary>
Enable a C transformation. This will begin running inverse and forward computations for the specified transformation. All axes part of the transformation must be enabled at any time the transformation is enabled. If the transformation is enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationEnable(System.String,System.String)">
<summary>
Enable a C transformation. This will begin running inverse and forward computations for the specified transformation. All axes part of the transformation must be enabled at any time the transformation is enabled. If the transformation is enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationEnable(System.String[])">
<summary>
Enable multiple C transformations simultaneously. This will begin running inverse and forward computations for the specified transformations. All axes part of the transformations must be enabled at any time the transformations are enabled. If the transformations are enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformations.
Executes on task 1.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationEnable(System.String[],System.Int32)">
<summary>
Enable multiple C transformations simultaneously. This will begin running inverse and forward computations for the specified transformations. All axes part of the transformations must be enabled at any time the transformations are enabled. If the transformations are enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformations.
Executes on the specified task.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationEnable(System.String[],System.String)">
<summary>
Enable multiple C transformations simultaneously. This will begin running inverse and forward computations for the specified transformations. All axes part of the transformations must be enabled at any time the transformations are enabled. If the transformations are enabled while there is synchronous motion on the same task, then the motion program will wait for motion to complete before enabling the transformations.
Executes on the specified task.
</summary>
<param name="transformationNames">The names specified in the C Transformation configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationGetProperty(System.String,System.String)">
<summary>
Call the OnGetProperty() C function defined in a C transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="property">The property argument provided to the OnGetProperty() C function.</param>
<returns>
The value argument set by the OnGetProperty() C function.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationGetProperty(System.String,System.String,System.Int32)">
<summary>
Call the OnGetProperty() C function defined in a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="property">The property argument provided to the OnGetProperty() C function.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value argument set by the OnGetProperty() C function.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationGetProperty(System.String,System.String,System.String)">
<summary>
Call the OnGetProperty() C function defined in a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="property">The property argument provided to the OnGetProperty() C function.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value argument set by the OnGetProperty() C function.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetInputAxes(System.String,System.Int32[])">
<summary>
Set the input axes of a C transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetInputAxes(System.String,System.String[])">
<summary>
Set the input axes of a C transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetInputAxes(System.String,System.Int32[],System.Int32)">
<summary>
Set the input axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetInputAxes(System.String,System.String[],System.Int32)">
<summary>
Set the input axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetInputAxes(System.String,System.Int32[],System.String)">
<summary>
Set the input axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetInputAxes(System.String,System.String[],System.String)">
<summary>
Set the input axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="inputAxes">The input axes of the transformation. Motion from these axes are input to the transformation.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.Int32[])">
<summary>
Set the output axes of a C transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.String[])">
<summary>
Set the output axes of a C transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.Int32[],System.Int32)">
<summary>
Set the output axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.String[],System.Int32)">
<summary>
Set the output axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.Int32[],System.String)">
<summary>
Set the output axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetOutputAxes(System.String,System.String[],System.String)">
<summary>
Set the output axes of a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="outputAxes">The output axes of the transformation. The transformation outputs motion to these axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetProperty(System.String,System.String,System.Double)">
<summary>
Call the OnSetProperty() C function defined in a C transformation.
Executes on task 1.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="property">The property argument provided to the OnSetProperty() C function.</param>
<param name="value">The value argument provided to the OnSetProperty() C function.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetProperty(System.String,System.String,System.Double,System.Int32)">
<summary>
Call the OnSetProperty() C function defined in a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="property">The property argument provided to the OnSetProperty() C function.</param>
<param name="value">The value argument provided to the OnSetProperty() C function.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.TransformationCommands.CTransformationSetProperty(System.String,System.String,System.Double,System.String)">
<summary>
Call the OnSetProperty() C function defined in a C transformation.
Executes on the specified task.
</summary>
<param name="transformationName">The name specified in the C Transformation configuration.</param>
<param name="property">The property argument provided to the OnSetProperty() C function.</param>
<param name="value">The value argument provided to the OnSetProperty() C function.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.CalibrationCommands">
<summary>
A class to execute Calibration AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.CalibrationCommands.CalibrationLoad(Aerotech.Automation1.DotNet.CalibrationType,System.String)">
<summary>
Loads and activates the specified axis calibration file or galvo power correction file.
Executes on task 1.
</summary>
<param name="calibrationType">The type of calibration that the specified file represents.</param>
<param name="controllerFileName">The path to the file to be loaded as a calibration file.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.CalibrationCommands.CalibrationLoad(Aerotech.Automation1.DotNet.CalibrationType,System.String,System.Int32)">
<summary>
Loads and activates the specified axis calibration file or galvo power correction file.
Executes on the specified task.
</summary>
<param name="calibrationType">The type of calibration that the specified file represents.</param>
<param name="controllerFileName">The path to the file to be loaded as a calibration file.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.CalibrationCommands.CalibrationLoad(Aerotech.Automation1.DotNet.CalibrationType,System.String,System.String)">
<summary>
Loads and activates the specified axis calibration file or galvo power correction file.
Executes on the specified task.
</summary>
<param name="calibrationType">The type of calibration that the specified file represents.</param>
<param name="controllerFileName">The path to the file to be loaded as a calibration file.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.CalibrationCommands.CalibrationUnload(Aerotech.Automation1.DotNet.CalibrationType)">
<summary>
Deactivates and unloads the calibration for the specified calibration type.
Executes on task 1.
</summary>
<param name="calibrationType">The type of calibration to be unloaded.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.CalibrationCommands.CalibrationUnload(Aerotech.Automation1.DotNet.CalibrationType,System.Int32)">
<summary>
Deactivates and unloads the calibration for the specified calibration type.
Executes on the specified task.
</summary>
<param name="calibrationType">The type of calibration to be unloaded.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.CalibrationCommands.CalibrationUnload(Aerotech.Automation1.DotNet.CalibrationType,System.String)">
<summary>
Deactivates and unloads the calibration for the specified calibration type.
Executes on the specified task.
</summary>
<param name="calibrationType">The type of calibration to be unloaded.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.JoystickCommands">
<summary>
A class to execute Joystick AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupAdd(System.Int32[],Aerotech.Automation1.DotNet.JoystickInput[])">
<summary>
Adds an axis group configuration to the joystick configuration.
Executes on task 1.
</summary>
<param name="motionAxes">An array of one or more axes to control with the joystick.</param>
<param name="joystickInputs">An array of one or more joystick inputs to use to control axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupAdd(System.String[],Aerotech.Automation1.DotNet.JoystickInput[])">
<summary>
Adds an axis group configuration to the joystick configuration.
Executes on task 1.
</summary>
<param name="motionAxes">An array of one or more axes to control with the joystick.</param>
<param name="joystickInputs">An array of one or more joystick inputs to use to control axes.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupAdd(System.Int32[],Aerotech.Automation1.DotNet.JoystickInput[],System.Int32)">
<summary>
Adds an axis group configuration to the joystick configuration.
Executes on the specified task.
</summary>
<param name="motionAxes">An array of one or more axes to control with the joystick.</param>
<param name="joystickInputs">An array of one or more joystick inputs to use to control axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupAdd(System.String[],Aerotech.Automation1.DotNet.JoystickInput[],System.Int32)">
<summary>
Adds an axis group configuration to the joystick configuration.
Executes on the specified task.
</summary>
<param name="motionAxes">An array of one or more axes to control with the joystick.</param>
<param name="joystickInputs">An array of one or more joystick inputs to use to control axes.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupAdd(System.Int32[],Aerotech.Automation1.DotNet.JoystickInput[],System.String)">
<summary>
Adds an axis group configuration to the joystick configuration.
Executes on the specified task.
</summary>
<param name="motionAxes">An array of one or more axes to control with the joystick.</param>
<param name="joystickInputs">An array of one or more joystick inputs to use to control axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupAdd(System.String[],Aerotech.Automation1.DotNet.JoystickInput[],System.String)">
<summary>
Adds an axis group configuration to the joystick configuration.
Executes on the specified task.
</summary>
<param name="motionAxes">An array of one or more axes to control with the joystick.</param>
<param name="joystickInputs">An array of one or more joystick inputs to use to control axes.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupRemoveAll">
<summary>
Removes all axis group configurations from the joystick configuration.
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupRemoveAll(System.Int32)">
<summary>
Removes all axis group configurations from the joystick configuration.
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickAxisGroupRemoveAll(System.String)">
<summary>
Removes all axis group configurations from the joystick configuration.
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickRun">
<summary>
Activates the joystick.
Executes on task 1.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickRun(System.Int32)">
<summary>
Activates the joystick.
Executes on the specified task.
</summary>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.JoystickCommands.JoystickRun(System.String)">
<summary>
Activates the joystick.
Executes on the specified task.
</summary>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands">
<summary>
A class to execute DriveAnalogControl AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the acceleration feedforward and analog input voltage, where Acceleration Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Acceleration Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the acceleration feedforward computation.</param>
<param name="inputScale">The scale value used in the acceleration feedforward computation to convert from volts to units/second^2.</param>
<param name="inputOffset">The offset value in millivolts used in the acceleration feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.Int32)">
<summary>
Disables the Drive Analog Acceleration Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.String)">
<summary>
Disables the Drive Analog Acceleration Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.Int32,System.Int32)">
<summary>
Disables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.String,System.Int32)">
<summary>
Disables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.Int32,System.String)">
<summary>
Disables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOff(System.String,System.String)">
<summary>
Disables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.Int32)">
<summary>
Enables the Drive Analog Acceleration Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.String)">
<summary>
Enables the Drive Analog Acceleration Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.Int32,System.Int32)">
<summary>
Enables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.String,System.Int32)">
<summary>
Enables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.Int32,System.String)">
<summary>
Enables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogAccelerationFeedforwardOn(System.String,System.String)">
<summary>
Enables the Drive Analog Acceleration Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Acceleration Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the output current and analog input voltage, where Current = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Current Control feature.</param>
<param name="analogInputNum">The analog input signal used in the current computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the current computation to convert from volts to amps.</param>
<param name="inputOffset">The offset value in millivolts used in the current computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.Int32)">
<summary>
Disables the Drive Analog Current Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.String)">
<summary>
Disables the Drive Analog Current Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.Int32,System.Int32)">
<summary>
Disables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.String,System.Int32)">
<summary>
Disables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.Int32,System.String)">
<summary>
Disables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOff(System.String,System.String)">
<summary>
Disables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.Int32)">
<summary>
Enables the Drive Analog Current Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.String)">
<summary>
Enables the Drive Analog Current Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.Int32,System.Int32)">
<summary>
Enables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.String,System.Int32)">
<summary>
Enables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.Int32,System.String)">
<summary>
Enables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogCurrentControlOn(System.String,System.String)">
<summary>
Enables the Drive Analog Current Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Current Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.Int32,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.String,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.Int32,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.String,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.Int32,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureInput(System.String,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the output position and analog input voltage, where Position = (Analog Input Voltage - $inputOffset) x $inputScale + (Starting Position). Starting Position is the position of the axis at the time DriveAnalogPositionControlOn() is called.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="inputNum">The analog input signal used in the position computation.</param>
<param name="inputScale">The scale value used in the position computation.</param>
<param name="inputOffset">The offset value used in the position computation.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.Int32,System.Double)">
<summary>
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.String,System.Double)">
<summary>
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.Int32,System.Double,System.Int32)">
<summary>
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.String,System.Double,System.Int32)">
<summary>
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.Int32,System.Double,System.String)">
<summary>
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlConfigureSpeedClamp(System.String,System.Double,System.String)">
<summary>
Configures the maximum speed at which the controller commands the axis to move using the Drive Analog Position Control feature. If you do not use this function, then the controller does not limit the maximum speed.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Position Control feature.</param>
<param name="maxSpeed">The speed in user units per second. If you specify a value of 0 for this argument, then the controller does not limit the maximum speed.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.Int32)">
<summary>
Disable the Drive Analog Position Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.String)">
<summary>
Disable the Drive Analog Position Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.Int32,System.Int32)">
<summary>
Disable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.String,System.Int32)">
<summary>
Disable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.Int32,System.String)">
<summary>
Disable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOff(System.String,System.String)">
<summary>
Disable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Position Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.Int32)">
<summary>
Enable the Drive Analog Position Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.String)">
<summary>
Enable the Drive Analog Position Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.Int32,System.Int32)">
<summary>
Enable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.String,System.Int32)">
<summary>
Enable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.Int32,System.String)">
<summary>
Enable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogPositionControlOn(System.String,System.String)">
<summary>
Enable the Drive Analog Position Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Position Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.Int32,System.Int64,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlConfigureInput(System.String,System.Int64,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the output velocity and analog input voltage, where Velocity = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Control feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity computation.</param>
<param name="digitalInputNum">The digital input signal used to enable and disable the axis.</param>
<param name="inputScale">The scale value used in the velocity computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.Int32)">
<summary>
Disables the Drive Analog Velocity Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.String)">
<summary>
Disables the Drive Analog Velocity Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.Int32,System.Int32)">
<summary>
Disables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.String,System.Int32)">
<summary>
Disables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.Int32,System.String)">
<summary>
Disables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOff(System.String,System.String)">
<summary>
Disables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Current Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.Int32)">
<summary>
Enables the Drive Analog Velocity Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.String)">
<summary>
Enables the Drive Analog Velocity Control feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.Int32,System.Int32)">
<summary>
Enables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.String,System.Int32)">
<summary>
Enables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.Int32,System.String)">
<summary>
Enables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityControlOn(System.String,System.String)">
<summary>
Enables the Drive Analog Velocity Control feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Control feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double)">
<summary>
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double,System.Int32)">
<summary>
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.Int32,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardConfigureInput(System.String,System.Int64,System.Double,System.Double,System.String)">
<summary>
Configures the relationship between the velocity feedforward and analog input voltage, where Velocity Feedforward = (Analog Input Voltage - ($inputOffset / 1000)) x $inputScale.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration for the Drive Analog Velocity Feedforward feature.</param>
<param name="analogInputNum">The analog input signal used in the velocity feedforward computation.</param>
<param name="inputScale">The scale value used in the velocity feedforward computation to convert from volts to units/second.</param>
<param name="inputOffset">The offset value in millivolts used in the velocity feedforward computation. This argument has a minimum value of -1000 and a maximum value of 1000.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.Int32)">
<summary>
Disables the Drive Analog Velocity Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.String)">
<summary>
Disables the Drive Analog Velocity Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.Int32,System.Int32)">
<summary>
Disables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.String,System.Int32)">
<summary>
Disables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.Int32,System.String)">
<summary>
Disables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOff(System.String,System.String)">
<summary>
Disables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.Int32)">
<summary>
Enables the Drive Analog Velocity Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.String)">
<summary>
Enables the Drive Analog Velocity Feedforward feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.Int32,System.Int32)">
<summary>
Enables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.String,System.Int32)">
<summary>
Enables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.Int32,System.String)">
<summary>
Enables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.DriveAnalogControlCommands.DriveAnalogVelocityFeedforwardOn(System.String,System.String)">
<summary>
Enables the Drive Analog Velocity Feedforward feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the Drive Analog Velocity Feedforward feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.AutofocusCommands">
<summary>
A class to execute Autofocus AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOff(System.Int32)">
<summary>
Disables autofocus on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOff(System.String)">
<summary>
Disables autofocus on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOff(System.Int32,System.Int32)">
<summary>
Disables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOff(System.String,System.Int32)">
<summary>
Disables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOff(System.Int32,System.String)">
<summary>
Disables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOff(System.String,System.String)">
<summary>
Disables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable autofocus.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOn(System.Int32,Aerotech.Automation1.DotNet.AutofocusFocusMode)">
<summary>
Enables autofocus on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOn(System.String,Aerotech.Automation1.DotNet.AutofocusFocusMode)">
<summary>
Enables autofocus on an axis.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOn(System.Int32,Aerotech.Automation1.DotNet.AutofocusFocusMode,System.Int32)">
<summary>
Enables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOn(System.String,Aerotech.Automation1.DotNet.AutofocusFocusMode,System.Int32)">
<summary>
Enables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOn(System.Int32,Aerotech.Automation1.DotNet.AutofocusFocusMode,System.String)">
<summary>
Enables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.AutofocusCommands.AutofocusOn(System.String,Aerotech.Automation1.DotNet.AutofocusFocusMode,System.String)">
<summary>
Enables autofocus on an axis.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable autofocus.</param>
<param name="focusMode">Selects if autofocus will run in continuous focus or single focus mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.PsoCommands">
<summary>
A class to execute Pso AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoBitmapConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoBitmapConfigureArray(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoBitmapConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoBitmapConfigureArray(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoBitmapConfigureArray(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoBitmapConfigureArray(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of PSO bit data words, where each word is a 32-bit integer.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the bit data.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first word of bit data is stored.</param>
<param name="numberOfPoints">The number of bit data words to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use bit data words after the last word in the array is used, starting over at the first word.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection)">
<summary>
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.String,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection)">
<summary>
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection,System.Int32)">
<summary>
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.String,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection,System.Int32)">
<summary>
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection,System.String)">
<summary>
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureAllowedEventDirection(System.String,Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection,System.String)">
<summary>
Configures the distance counter tracking directions that will cause PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance event directions.</param>
<param name="eventDirection">The distance event directions to set.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureArrayDistances(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureArrayDistances(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureArrayDistances(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureArrayDistances(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureArrayDistances(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureArrayDistances(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of distances in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distances.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first distance is stored.</param>
<param name="numberOfDistances">The number of distances to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use distances after the last distance in the array is used, starting over at the first distance.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureCounterReset(System.Int32,System.Int64)">
<summary>
Configures the conditions which will reset the PSO distance counters.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureCounterReset(System.String,System.Int64)">
<summary>
Configures the conditions which will reset the PSO distance counters.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureCounterReset(System.Int32,System.Int64,System.Int32)">
<summary>
Configures the conditions which will reset the PSO distance counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureCounterReset(System.String,System.Int64,System.Int32)">
<summary>
Configures the conditions which will reset the PSO distance counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureCounterReset(System.Int32,System.Int64,System.String)">
<summary>
Configures the conditions which will reset the PSO distance counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureCounterReset(System.String,System.Int64,System.String)">
<summary>
Configures the conditions which will reset the PSO distance counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO distance counter reset options. Use the values from the PsoDistanceCounterResetMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureFixedDistance(System.Int32,System.Int64)">
<summary>
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureFixedDistance(System.String,System.Int64)">
<summary>
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureFixedDistance(System.Int32,System.Int64,System.Int32)">
<summary>
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureFixedDistance(System.String,System.Int64,System.Int32)">
<summary>
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureFixedDistance(System.Int32,System.Int64,System.String)">
<summary>
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureFixedDistance(System.String,System.Int64,System.String)">
<summary>
Configures the distance in counts that the PSO counter or counters must travel for an event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance.</param>
<param name="distance">The distance in counts.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureInputs(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceInput[])">
<summary>
Selects the source of each PSO distance counter.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureInputs(System.String,Aerotech.Automation1.DotNet.PsoDistanceInput[])">
<summary>
Selects the source of each PSO distance counter.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureInputs(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceInput[],System.Int32)">
<summary>
Selects the source of each PSO distance counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureInputs(System.String,Aerotech.Automation1.DotNet.PsoDistanceInput[],System.Int32)">
<summary>
Selects the source of each PSO distance counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureInputs(System.Int32,Aerotech.Automation1.DotNet.PsoDistanceInput[],System.String)">
<summary>
Selects the source of each PSO distance counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureInputs(System.String,Aerotech.Automation1.DotNet.PsoDistanceInput[],System.String)">
<summary>
Selects the source of each PSO distance counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the distance counter sources.</param>
<param name="inputs">An array of one to three input sources, one for each distance counter.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureScaling(System.Int32,System.Int64[])">
<summary>
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureScaling(System.String,System.Int64[])">
<summary>
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureScaling(System.Int32,System.Int64[],System.Int32)">
<summary>
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureScaling(System.String,System.Int64[],System.Int32)">
<summary>
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureScaling(System.Int32,System.Int64[],System.String)">
<summary>
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceConfigureScaling(System.String,System.Int64[],System.String)">
<summary>
Configures the PSO distance counters to apply an integer scale factor for each tracking input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the scale factors.</param>
<param name="scaleFactors">An array of one to three integer scale factors, one per tracking input.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOff(System.Int32)">
<summary>
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOff(System.String)">
<summary>
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOff(System.Int32,System.Int32)">
<summary>
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOff(System.String,System.Int32)">
<summary>
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOff(System.Int32,System.String)">
<summary>
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOff(System.String,System.String)">
<summary>
Disables the PSO distance counters, causing them to retain their values and ignore their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the PSO distance counters.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOn(System.Int32)">
<summary>
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOn(System.String)">
<summary>
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOn(System.Int32,System.Int32)">
<summary>
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOn(System.String,System.Int32)">
<summary>
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOn(System.Int32,System.String)">
<summary>
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceCounterOn(System.String,System.String)">
<summary>
Enables the PSO distance counters, allowing them to track their configured inputs.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the PSO distance counters.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOff(System.Int32)">
<summary>
Disables PSO distance events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOff(System.String)">
<summary>
Disables PSO distance events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOff(System.Int32,System.Int32)">
<summary>
Disables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOff(System.String,System.Int32)">
<summary>
Disables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOff(System.Int32,System.String)">
<summary>
Disables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOff(System.String,System.String)">
<summary>
Disables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable distance events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOn(System.Int32)">
<summary>
Enables PSO distance events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOn(System.String)">
<summary>
Enables PSO distance events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOn(System.Int32,System.Int32)">
<summary>
Enables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOn(System.String,System.Int32)">
<summary>
Enables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOn(System.Int32,System.String)">
<summary>
Enables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoDistanceEventsOn(System.String,System.String)">
<summary>
Enables PSO distance events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable distance events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventConfigureMask(System.Int32,System.Int64)">
<summary>
Configures additional conditions to prevent PSO events from occurring.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventConfigureMask(System.String,System.Int64)">
<summary>
Configures additional conditions to prevent PSO events from occurring.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventConfigureMask(System.Int32,System.Int64,System.Int32)">
<summary>
Configures additional conditions to prevent PSO events from occurring.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventConfigureMask(System.String,System.Int64,System.Int32)">
<summary>
Configures additional conditions to prevent PSO events from occurring.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventConfigureMask(System.Int32,System.Int64,System.String)">
<summary>
Configures additional conditions to prevent PSO events from occurring.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventConfigureMask(System.String,System.Int64,System.String)">
<summary>
Configures additional conditions to prevent PSO events from occurring.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the event mask conditions.</param>
<param name="eventMask">A bitmask of event mask conditions. Use the values from the PsoEventMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOff(System.Int32)">
<summary>
Immediately halts active continuous PSO events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to halt the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOff(System.String)">
<summary>
Immediately halts active continuous PSO events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to halt the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOff(System.Int32,System.Int32)">
<summary>
Immediately halts active continuous PSO events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to halt the events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOff(System.String,System.Int32)">
<summary>
Immediately halts active continuous PSO events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to halt the events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOff(System.Int32,System.String)">
<summary>
Immediately halts active continuous PSO events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to halt the events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOff(System.String,System.String)">
<summary>
Immediately halts active continuous PSO events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to halt the events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOn(System.Int32)">
<summary>
Immediately causes continuous PSO events to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to cause the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOn(System.String)">
<summary>
Immediately causes continuous PSO events to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to cause the events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOn(System.Int32,System.Int32)">
<summary>
Immediately causes continuous PSO events to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOn(System.String,System.Int32)">
<summary>
Immediately causes continuous PSO events to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOn(System.Int32,System.String)">
<summary>
Immediately causes continuous PSO events to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventContinuousOn(System.String,System.String)">
<summary>
Immediately causes continuous PSO events to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventGenerateSingle(System.Int32)">
<summary>
Immediately causes a single PSO event to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to cause the event.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventGenerateSingle(System.String)">
<summary>
Immediately causes a single PSO event to occur.
Executes on task 1.
</summary>
<param name="axis">The axis on which to cause the event.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventGenerateSingle(System.Int32,System.Int32)">
<summary>
Immediately causes a single PSO event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the event.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventGenerateSingle(System.String,System.Int32)">
<summary>
Immediately causes a single PSO event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the event.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventGenerateSingle(System.Int32,System.String)">
<summary>
Immediately causes a single PSO event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the event.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoEventGenerateSingle(System.String,System.String)">
<summary>
Immediately causes a single PSO event to occur.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to cause the event.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOff(System.Int32)">
<summary>
Disables PSO laser events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOff(System.String)">
<summary>
Disables PSO laser events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOff(System.Int32,System.Int32)">
<summary>
Disables PSO laser events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOff(System.String,System.Int32)">
<summary>
Disables PSO laser events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOff(System.Int32,System.String)">
<summary>
Disables PSO laser events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOff(System.String,System.String)">
<summary>
Disables PSO laser events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable PSO laser events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOn(System.Int32)">
<summary>
Configures the PSO to generate an event when the laser command bit turns on.
Executes on task 1.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOn(System.String)">
<summary>
Configures the PSO to generate an event when the laser command bit turns on.
Executes on task 1.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOn(System.Int32,System.Int32)">
<summary>
Configures the PSO to generate an event when the laser command bit turns on.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOn(System.String,System.Int32)">
<summary>
Configures the PSO to generate an event when the laser command bit turns on.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOn(System.Int32,System.String)">
<summary>
Configures the PSO to generate an event when the laser command bit turns on.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoLaserEventsOn(System.String,System.String)">
<summary>
Configures the PSO to generate an event when the laser command bit turns on.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to generate laser PSO events.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureOutput(System.Int32,Aerotech.Automation1.DotNet.PsoOutputPin)">
<summary>
Selects the output pin on which to drive the PSO output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureOutput(System.String,Aerotech.Automation1.DotNet.PsoOutputPin)">
<summary>
Selects the output pin on which to drive the PSO output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureOutput(System.Int32,Aerotech.Automation1.DotNet.PsoOutputPin,System.Int32)">
<summary>
Selects the output pin on which to drive the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureOutput(System.String,Aerotech.Automation1.DotNet.PsoOutputPin,System.Int32)">
<summary>
Selects the output pin on which to drive the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureOutput(System.Int32,Aerotech.Automation1.DotNet.PsoOutputPin,System.String)">
<summary>
Selects the output pin on which to drive the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureOutput(System.String,Aerotech.Automation1.DotNet.PsoOutputPin,System.String)">
<summary>
Selects the output pin on which to drive the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output pin.</param>
<param name="output">The selected output pin.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureSource(System.Int32,Aerotech.Automation1.DotNet.PsoOutputSource)">
<summary>
Selects which internal PSO signal to drive onto the output pin.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureSource(System.String,Aerotech.Automation1.DotNet.PsoOutputSource)">
<summary>
Selects which internal PSO signal to drive onto the output pin.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureSource(System.Int32,Aerotech.Automation1.DotNet.PsoOutputSource,System.Int32)">
<summary>
Selects which internal PSO signal to drive onto the output pin.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureSource(System.String,Aerotech.Automation1.DotNet.PsoOutputSource,System.Int32)">
<summary>
Selects which internal PSO signal to drive onto the output pin.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureSource(System.Int32,Aerotech.Automation1.DotNet.PsoOutputSource,System.String)">
<summary>
Selects which internal PSO signal to drive onto the output pin.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputConfigureSource(System.String,Aerotech.Automation1.DotNet.PsoOutputSource,System.String)">
<summary>
Selects which internal PSO signal to drive onto the output pin.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the PSO output source.</param>
<param name="outputSource">The selected output source.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOff(System.Int32)">
<summary>
Immediately deactivates the PSO output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOff(System.String)">
<summary>
Immediately deactivates the PSO output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOff(System.Int32,System.Int32)">
<summary>
Immediately deactivates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOff(System.String,System.Int32)">
<summary>
Immediately deactivates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOff(System.Int32,System.String)">
<summary>
Immediately deactivates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOff(System.String,System.String)">
<summary>
Immediately deactivates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate the PSO output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOn(System.Int32)">
<summary>
Immediately activates the PSO output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOn(System.String)">
<summary>
Immediately activates the PSO output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOn(System.Int32,System.Int32)">
<summary>
Immediately activates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOn(System.String,System.Int32)">
<summary>
Immediately activates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOn(System.Int32,System.String)">
<summary>
Immediately activates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoOutputOn(System.String,System.String)">
<summary>
Immediately activates the PSO output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate the PSO output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoReset(System.Int32)">
<summary>
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on task 1.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoReset(System.String)">
<summary>
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on task 1.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoReset(System.Int32,System.Int32)">
<summary>
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoReset(System.String,System.Int32)">
<summary>
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoReset(System.Int32,System.String)">
<summary>
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoReset(System.String,System.String)">
<summary>
Resets all PSO configuration, which restores all PSO settings to their default values.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to reset the PSO configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationConfigure(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction)">
<summary>
Configures a PSO input transformation channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationConfigure(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction)">
<summary>
Configures a PSO input transformation channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationConfigure(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction,System.Int32)">
<summary>
Configures a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationConfigure(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction,System.Int32)">
<summary>
Configures a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationConfigure(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction,System.String)">
<summary>
Configures a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationConfigure(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationInput,Aerotech.Automation1.DotNet.PsoTransformationFunction,System.String)">
<summary>
Configures a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the transformation channel.</param>
<param name="transformationChannel">The transformation channel to configure.</param>
<param name="inputA">The first input to the transformation.</param>
<param name="inputB">The second input to the transformation.</param>
<param name="transformationFunction">The function of the transformation.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOff(System.Int32,System.Int64)">
<summary>
Disables a PSO input transformation channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOff(System.String,System.Int64)">
<summary>
Disables a PSO input transformation channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOff(System.Int32,System.Int64,System.Int32)">
<summary>
Disables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOff(System.String,System.Int64,System.Int32)">
<summary>
Disables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOff(System.Int32,System.Int64,System.String)">
<summary>
Disables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOff(System.String,System.Int64,System.String)">
<summary>
Disables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to disable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOn(System.Int32,System.Int64)">
<summary>
Enables a PSO input transformation channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOn(System.String,System.Int64)">
<summary>
Enables a PSO input transformation channel.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOn(System.Int32,System.Int64,System.Int32)">
<summary>
Enables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOn(System.String,System.Int64,System.Int32)">
<summary>
Enables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOn(System.Int32,System.Int64,System.String)">
<summary>
Enables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoTransformationOn(System.String,System.Int64,System.String)">
<summary>
Enables a PSO input transformation channel.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the transformation channel.</param>
<param name="transformationChannel">The transformation channel to enable.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.Int32)">
<summary>
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.String)">
<summary>
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.Int32,System.Int32)">
<summary>
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.String,System.Int32)">
<summary>
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.Int32,System.String)">
<summary>
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPulseConfiguration(System.String,System.String)">
<summary>
Checks for a valid configuration of pulse mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the pulse configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.Int32)">
<summary>
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.String)">
<summary>
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.Int32,System.Int32)">
<summary>
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.String,System.Int32)">
<summary>
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.Int32,System.String)">
<summary>
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformApplyPwmConfiguration(System.String,System.String)">
<summary>
Checks for a valid configuration of PWM mode parameters and applies the configuration to the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the PWM configuration.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureDelay(System.Int32,System.Double)">
<summary>
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureDelay(System.String,System.Double)">
<summary>
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureDelay(System.Int32,System.Double,System.Int32)">
<summary>
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureDelay(System.String,System.Double,System.Int32)">
<summary>
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureDelay(System.Int32,System.Double,System.String)">
<summary>
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureDelay(System.String,System.Double,System.String)">
<summary>
Configures the waveform module to wait for the specified time after a PSO event before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the waveform output delay.</param>
<param name="delayTime">The delay time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformMode)">
<summary>
Selects the output mode of the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformMode)">
<summary>
Selects the output mode of the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformMode,System.Int32)">
<summary>
Selects the output mode of the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformMode,System.Int32)">
<summary>
Selects the output mode of the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformMode,System.String)">
<summary>
Selects the output mode of the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigureMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformMode,System.String)">
<summary>
Selects the output mode of the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the output mode of the waveform module.</param>
<param name="waveformMode">Mode selection for the waveform module output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayCounts(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of pulse counts for a sequence of waveform module outputs in pulse mode. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse counts.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first pulse count is stored.</param>
<param name="numberOfPoints">The number of pulse counts to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use pulse counts after the last pulse count in the array is used, starting over at the first pulse count.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayOnTimes(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in pulse mode. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseArrayTotalTimes(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of total times for a sequence of waveform module outputs in pulse mode. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first total time is stored.</param>
<param name="numberOfPoints">The number of total times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use total times after the last total time in the array is used, starting over at the first total time.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.Int32,System.Int64)">
<summary>
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.String,System.Int64)">
<summary>
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.Int32,System.Int64,System.Int32)">
<summary>
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.String,System.Int64,System.Int32)">
<summary>
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.Int32,System.Int64,System.String)">
<summary>
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseEventQueue(System.String,System.Int64,System.String)">
<summary>
Configures the maximum number of events in the queue. Each event in the queue will cause a PSO waveform pulse generation to occur after the active waveform period completes.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the queue for the PSO waveform pulse event.</param>
<param name="maxQueuedEvents">The maximum number of events to put in the queue.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.Int32,System.Int64)">
<summary>
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.String,System.Int64)">
<summary>
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.Int32,System.Int64,System.Int32)">
<summary>
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.String,System.Int64,System.Int32)">
<summary>
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.Int32,System.Int64,System.String)">
<summary>
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedCount(System.String,System.Int64,System.String)">
<summary>
Configures the fixed pulse count of the waveform module output in pulse mode, which will be applied to all pulses. The pulse count specifies the number of periods that will be generated from a single PSO event.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the number of pulses.</param>
<param name="pulseCount">The integer number of pulses.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.Int32,System.Double)">
<summary>
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.String,System.Double)">
<summary>
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.Int32,System.Double,System.Int32)">
<summary>
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.String,System.Double,System.Int32)">
<summary>
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.Int32,System.Double,System.String)">
<summary>
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedOnTime(System.String,System.Double,System.String)">
<summary>
Configures the fixed on time of the waveform module output in pulse mode, which will be applied to all pulses. The on time specifies the active portion of the pulse period.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on time.</param>
<param name="onTime">The on time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.Int32,System.Double)">
<summary>
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.String,System.Double)">
<summary>
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.Int32,System.Double,System.Int32)">
<summary>
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.String,System.Double,System.Int32)">
<summary>
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.Int32,System.Double,System.String)">
<summary>
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseFixedTotalTime(System.String,System.Double,System.String)">
<summary>
Configures the fixed total time of the waveform module output in pulse mode, which will be applied to all pulses. The total time specifies the full period of the pulse.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseMask(System.Int32,System.Int64)">
<summary>
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseMask(System.String,System.Int64)">
<summary>
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseMask(System.Int32,System.Int64,System.Int32)">
<summary>
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseMask(System.String,System.Int64,System.Int32)">
<summary>
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseMask(System.Int32,System.Int64,System.String)">
<summary>
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseMask(System.String,System.Int64,System.String)">
<summary>
Configures additional conditions to disable the PSO waveform output in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform pulse mode masking options.</param>
<param name="pulseMask">A bitmask of PSO waveform pulse mode masking options. Use the values from the PsoWaveformPulseMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.Int32,System.Int64)">
<summary>
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.String,System.Int64)">
<summary>
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.Int32,System.Int64,System.Int32)">
<summary>
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.String,System.Int64,System.Int32)">
<summary>
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.Int32,System.Int64,System.String)">
<summary>
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePulseTruncation(System.String,System.Int64,System.String)">
<summary>
Allows or prevents the waveform module from outputting truncated waveform outputs in pulse mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the pulse truncation prevention feature.</param>
<param name="preventTruncation">Configures the waveform module to not allow the generation of truncated waveform outputs in pulse mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmOnTimes(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of on times for a sequence of waveform module outputs in PWM mode. The on time specifies the variable active portion of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the on times.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first on time is stored.</param>
<param name="numberOfPoints">The number of on times to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use on times after the last on time in the array is used, starting over at the first on time.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.Int32,System.Double)">
<summary>
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.String,System.Double)">
<summary>
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.Int32,System.Double,System.Int32)">
<summary>
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.String,System.Double,System.Int32)">
<summary>
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.Int32,System.Double,System.String)">
<summary>
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformConfigurePwmTotalTime(System.String,System.Double,System.String)">
<summary>
Configures the fixed total time of the waveform module output in PWM mode. The total time specifies the full period of the PWM signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the total time.</param>
<param name="totalTime">The total time in microseconds.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode)">
<summary>
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode)">
<summary>
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode,System.Int32)">
<summary>
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode,System.Int32)">
<summary>
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode,System.String)">
<summary>
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncConfigureDelayMode(System.String,Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode,System.String)">
<summary>
Configures the delay mode of the waveform module when you use the external synchronization signal.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the external sync delay mode.</param>
<param name="delayMode">The external sync delay mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOff(System.Int32)">
<summary>
Disables the external sync option for the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOff(System.String)">
<summary>
Disables the external sync option for the waveform module.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOff(System.Int32,System.Int32)">
<summary>
Disables the external sync option for the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOff(System.String,System.Int32)">
<summary>
Disables the external sync option for the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOff(System.Int32,System.String)">
<summary>
Disables the external sync option for the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOff(System.String,System.String)">
<summary>
Disables the external sync option for the waveform module.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable external sync option.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOn(System.Int32)">
<summary>
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOn(System.String)">
<summary>
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOn(System.Int32,System.Int32)">
<summary>
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOn(System.String,System.Int32)">
<summary>
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOn(System.Int32,System.String)">
<summary>
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformExternalSyncOn(System.String,System.String)">
<summary>
Configures the waveform module to wait for the rising edge of the external sync signal before beginning to output a waveform.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable external sync option.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOff(System.Int32)">
<summary>
Disables the waveform module, preventing PSO events from triggering it.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOff(System.String)">
<summary>
Disables the waveform module, preventing PSO events from triggering it.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOff(System.Int32,System.Int32)">
<summary>
Disables the waveform module, preventing PSO events from triggering it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOff(System.String,System.Int32)">
<summary>
Disables the waveform module, preventing PSO events from triggering it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOff(System.Int32,System.String)">
<summary>
Disables the waveform module, preventing PSO events from triggering it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOff(System.String,System.String)">
<summary>
Disables the waveform module, preventing PSO events from triggering it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the waveform module.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOn(System.Int32)">
<summary>
Enables the waveform module, allowing PSO events to trigger it.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOn(System.String)">
<summary>
Enables the waveform module, allowing PSO events to trigger it.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOn(System.Int32,System.Int32)">
<summary>
Enables the waveform module, allowing PSO events to trigger it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOn(System.String,System.Int32)">
<summary>
Enables the waveform module, allowing PSO events to trigger it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOn(System.Int32,System.String)">
<summary>
Enables the waveform module, allowing PSO events to trigger it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformOn(System.String,System.String)">
<summary>
Enables the waveform module, allowing PSO events to trigger it.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the waveform module.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingConfigure(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[])">
<summary>
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingConfigure(System.String,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[])">
<summary>
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingConfigure(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[],System.Int32)">
<summary>
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingConfigure(System.String,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[],System.Int32)">
<summary>
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingConfigure(System.Int32,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[],System.String)">
<summary>
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingConfigure(System.String,Aerotech.Automation1.DotNet.PsoWaveformScalingMode,Aerotech.Automation1.DotNet.PsoWaveformScalingInput,System.Double[],System.Double[],System.String)">
<summary>
Specifies the configuration of the optional PSO waveform scaling feature.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure PSO waveform scaling.</param>
<param name="scalingMode">Specifies the waveform parameters to which to apply the PSO waveform scaling.</param>
<param name="scalingInput">Specifies the input to the PSO waveform scaling.</param>
<param name="inputRange">Specifies the range of values in which the configured input will be used to calculate the scale factor to apply to the waveform parameters.</param>
<param name="scaleFactorRange">Specifies the valid range of scale factor outputs from the PSO waveform scaling feature.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOff(System.Int32)">
<summary>
Deactivates PSO waveform scaling.
Executes on task 1.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOff(System.String)">
<summary>
Deactivates PSO waveform scaling.
Executes on task 1.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOff(System.Int32,System.Int32)">
<summary>
Deactivates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOff(System.String,System.Int32)">
<summary>
Deactivates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOff(System.Int32,System.String)">
<summary>
Deactivates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOff(System.String,System.String)">
<summary>
Deactivates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to deactivate PSO waveform scaling.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOn(System.Int32)">
<summary>
Activates PSO waveform scaling.
Executes on task 1.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOn(System.String)">
<summary>
Activates PSO waveform scaling.
Executes on task 1.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOn(System.Int32,System.Int32)">
<summary>
Activates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOn(System.String,System.Int32)">
<summary>
Activates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOn(System.Int32,System.String)">
<summary>
Activates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWaveformScalingOn(System.String,System.String)">
<summary>
Activates PSO waveform scaling.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to activate PSO waveform scaling.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayRanges(System.Int32,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayRanges(System.String,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayRanges(System.Int32,System.Int64,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayRanges(System.String,System.Int64,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayRanges(System.Int32,System.Int64,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayRanges(System.String,System.Int64,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures an array of window range pairs each consisting of a lower bound followed by an upper bound.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window ranges.</param>
<param name="windowNumber">The number of the window on which to configure the ranges.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the lower bound of the first range pair is stored.</param>
<param name="numberOfRanges">The number of range value pairs to be read from the drive array.</param>
<param name="enableRepeat">Configures PSO to continue to use range pairs after the last range pair in the array is used, starting over at the first range pair.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection)">
<summary>
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection)">
<summary>
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection,System.Int32)">
<summary>
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection,System.Int32)">
<summary>
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection,System.String)">
<summary>
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureArrayUpdateDirection(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowUpdateDirection,System.String)">
<summary>
Configures the array of window range pairs to update when exiting the active window range in specific directions.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window array update direction.</param>
<param name="windowNumber">The number of the window on which to configure the array update direction.</param>
<param name="windowUpdateDirection">Mode selection to select the active window range exit directions on which to update the window range.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureCounterReset(System.Int32,System.Int64)">
<summary>
Configures the conditions which will reset the PSO window counters.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureCounterReset(System.String,System.Int64)">
<summary>
Configures the conditions which will reset the PSO window counters.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureCounterReset(System.Int32,System.Int64,System.Int32)">
<summary>
Configures the conditions which will reset the PSO window counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureCounterReset(System.String,System.Int64,System.Int32)">
<summary>
Configures the conditions which will reset the PSO window counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureCounterReset(System.Int32,System.Int64,System.String)">
<summary>
Configures the conditions which will reset the PSO window counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureCounterReset(System.String,System.Int64,System.String)">
<summary>
Configures the conditions which will reset the PSO window counters.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window counter reset conditions.</param>
<param name="optionsMask">A bitmask of PSO window counter reset options. Use the values from the PsoWindowCounterResetMask enum.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureEvents(System.Int32,Aerotech.Automation1.DotNet.PsoWindowEventMode)">
<summary>
Configures the conditions which will generate PSO window events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureEvents(System.String,Aerotech.Automation1.DotNet.PsoWindowEventMode)">
<summary>
Configures the conditions which will generate PSO window events.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureEvents(System.Int32,Aerotech.Automation1.DotNet.PsoWindowEventMode,System.Int32)">
<summary>
Configures the conditions which will generate PSO window events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureEvents(System.String,Aerotech.Automation1.DotNet.PsoWindowEventMode,System.Int32)">
<summary>
Configures the conditions which will generate PSO window events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureEvents(System.Int32,Aerotech.Automation1.DotNet.PsoWindowEventMode,System.String)">
<summary>
Configures the conditions which will generate PSO window events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureEvents(System.String,Aerotech.Automation1.DotNet.PsoWindowEventMode,System.String)">
<summary>
Configures the conditions which will generate PSO window events.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window event conditions.</param>
<param name="eventMode">The specified window event mode.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureFixedRange(System.Int32,System.Int64,System.Int64,System.Int64)">
<summary>
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureFixedRange(System.String,System.Int64,System.Int64,System.Int64)">
<summary>
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on task 1.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureFixedRange(System.Int32,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureFixedRange(System.String,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureFixedRange(System.Int32,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureFixedRange(System.String,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures a fixed window range consisting of a lower bound and an upper bound for the specified window.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to configure the window range.</param>
<param name="windowNumber">The number of the window on which to configure the range.</param>
<param name="lowerBound">The value for the window range lower bound.</param>
<param name="upperBound">The value for the window range upper bound.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64)">
<summary>
Selects the source of the specified window counter.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64)">
<summary>
Selects the source of the specified window counter.
Executes on task 1.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64,System.Int32)">
<summary>
Selects the source of the specified window counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64,System.Int32)">
<summary>
Selects the source of the specified window counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureInput(System.Int32,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64,System.String)">
<summary>
Selects the source of the specified window counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowConfigureInput(System.String,System.Int64,Aerotech.Automation1.DotNet.PsoWindowInput,System.Int64,System.String)">
<summary>
Selects the source of the specified window counter.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to select the window counter input source.</param>
<param name="windowNumber">The window number for which to select the counter input source.</param>
<param name="input">The window counter input source.</param>
<param name="reverseDirection">Configures the window counter to count in the opposite direction of its input source.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowCounterSetValue(System.Int32,System.Int64,System.Int64)">
<summary>
Sets the specified window counter to the specified value.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowCounterSetValue(System.String,System.Int64,System.Int64)">
<summary>
Sets the specified window counter to the specified value.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowCounterSetValue(System.Int32,System.Int64,System.Int64,System.Int32)">
<summary>
Sets the specified window counter to the specified value.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowCounterSetValue(System.String,System.Int64,System.Int64,System.Int32)">
<summary>
Sets the specified window counter to the specified value.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowCounterSetValue(System.Int32,System.Int64,System.Int64,System.String)">
<summary>
Sets the specified window counter to the specified value.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowCounterSetValue(System.String,System.Int64,System.Int64,System.String)">
<summary>
Sets the specified window counter to the specified value.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the window counter.</param>
<param name="windowNumber">The number of the window on which to set the counter.</param>
<param name="value">The new counter value.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOff(System.Int32,System.Int64)">
<summary>
Disables the specified window output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOff(System.String,System.Int64)">
<summary>
Disables the specified window output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOff(System.Int32,System.Int64,System.Int32)">
<summary>
Disables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOff(System.String,System.Int64,System.Int32)">
<summary>
Disables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOff(System.Int32,System.Int64,System.String)">
<summary>
Disables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOff(System.String,System.Int64,System.String)">
<summary>
Disables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to disable the window output.</param>
<param name="windowNumber">The number of the window on which to disable the output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOn(System.Int32,System.Int64)">
<summary>
Enables the specified window output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOn(System.String,System.Int64)">
<summary>
Enables the specified window output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOn(System.Int32,System.Int64,System.Int32)">
<summary>
Enables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOn(System.String,System.Int64,System.Int32)">
<summary>
Enables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOn(System.Int32,System.Int64,System.String)">
<summary>
Enables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.PsoCommands.PsoWindowOutputOn(System.String,System.Int64,System.String)">
<summary>
Enables the specified window output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to enable the window output.</param>
<param name="windowNumber">The number of the window on which to enable the output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.Commands.IOCommands">
<summary>
A class to execute IO AeroScript commands on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogInputGet(System.Int32,System.Int64)">
<summary>
Gets the value of a specified analog input.
Executes on task 1.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog input.</param>
<param name="inputNum">The number of the analog input to get.</param>
<returns>
The value of the specified analog input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogInputGet(System.String,System.Int64)">
<summary>
Gets the value of a specified analog input.
Executes on task 1.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog input.</param>
<param name="inputNum">The number of the analog input to get.</param>
<returns>
The value of the specified analog input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogInputGet(System.Int32,System.Int64,System.Int32)">
<summary>
Gets the value of a specified analog input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog input.</param>
<param name="inputNum">The number of the analog input to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogInputGet(System.String,System.Int64,System.Int32)">
<summary>
Gets the value of a specified analog input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog input.</param>
<param name="inputNum">The number of the analog input to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogInputGet(System.Int32,System.Int64,System.String)">
<summary>
Gets the value of a specified analog input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog input.</param>
<param name="inputNum">The number of the analog input to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogInputGet(System.String,System.Int64,System.String)">
<summary>
Gets the value of a specified analog input.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog input.</param>
<param name="inputNum">The number of the analog input to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureArrayMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Configures the specified analog output to use values from the drive array.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureArrayMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64)">
<summary>
Configures the specified analog output to use values from the drive array.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureArrayMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures the specified analog output to use values from the drive array.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureArrayMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64,System.Int32)">
<summary>
Configures the specified analog output to use values from the drive array.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureArrayMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures the specified analog output to use values from the drive array.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureArrayMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent,System.Int64,System.Int64,System.Int64,System.Int64,System.String)">
<summary>
Configures the specified analog output to use values from the drive array.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="updateEvent">The event which causes a new analog output value to be read from the drive array.</param>
<param name="driveArrayStartAddress">The byte-addressable index of the drive array where the first analog output value is stored.</param>
<param name="numberOfPoints">The number of analog output values to read from the drive array.</param>
<param name="divisor">Divides the default update event rate by the specified integer if $updateEvent is set to Time.</param>
<param name="enableRepeat">Configures the specified analog output to start over at the first analog output value after the last value in the drive array is used.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on task 1.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on task 1.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double,System.Int32)">
<summary>
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double,System.Int32)">
<summary>
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.Int32,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double,System.String)">
<summary>
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureAxisTrackingMode(System.String,System.Int64,Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem,System.Double,System.Double,System.Double,System.Double,System.String)">
<summary>
Configures an analog output to be dependent on a specified real-time internal servo loop value of a single axis.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureDefaultMode(System.Int32,System.Int64)">
<summary>
Restores the analog output configuration to the default operating mode.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureDefaultMode(System.String,System.Int64)">
<summary>
Restores the analog output configuration to the default operating mode.
Executes on task 1.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureDefaultMode(System.Int32,System.Int64,System.Int32)">
<summary>
Restores the analog output configuration to the default operating mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureDefaultMode(System.String,System.Int64,System.Int32)">
<summary>
Restores the analog output configuration to the default operating mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureDefaultMode(System.Int32,System.Int64,System.String)">
<summary>
Restores the analog output configuration to the default operating mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureDefaultMode(System.String,System.Int64,System.String)">
<summary>
Restores the analog output configuration to the default operating mode.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to apply the configuration.</param>
<param name="outputNum">The number of the analog output to configure.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.Int32,System.Int64,System.Int32[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on task 1.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.String,System.Int64,System.String[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double)">
<summary>
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on task 1.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.Int32,System.Int64,System.Int32[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double,System.Int32)">
<summary>
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.String,System.Int64,System.String[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double,System.Int32)">
<summary>
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.Int32,System.Int64,System.Int32[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double,System.String)">
<summary>
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputConfigureVectorTrackingMode(System.String,System.Int64,System.String[],Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem,System.Double,System.Double,System.Double,System.Double,System.String)">
<summary>
Configures an analog output to be dependent on the square root of the sum of squares of a specified real-time internal servo loop value of multiple axes. The tracked value is always positive or zero.
Executes on the specified task.
</summary>
<param name="outputAxis">The axis of the servo loop value that $trackingItem is tracking.</param>
<param name="outputNum">The index of the analog output to update.</param>
<param name="inputAxes">An array of axes from which to read the $trackingItem from, vectorizing the result, in order to update the analog output.</param>
<param name="trackingItem">A servo loop value, such as position command, to track.</param>
<param name="scaleFactor">The scale factor applied to the analog output.</param>
<param name="offset">This value is applied with the tracking value to the analog output. Use this argument if you want to track position on a stage where the position can never be negative. The units are volts.</param>
<param name="minVoltage">The minimum voltage that the analog output will be set to.</param>
<param name="maxVoltage">The maximum voltage that the analog output will be set to.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputGet(System.Int32,System.Int64)">
<summary>
Gets the value of a specified analog output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog output.</param>
<param name="outputNum">The number of the analog output to get.</param>
<returns>
The value of the specified analog output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputGet(System.String,System.Int64)">
<summary>
Gets the value of a specified analog output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog output.</param>
<param name="outputNum">The number of the analog output to get.</param>
<returns>
The value of the specified analog output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputGet(System.Int32,System.Int64,System.Int32)">
<summary>
Gets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog output.</param>
<param name="outputNum">The number of the analog output to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputGet(System.String,System.Int64,System.Int32)">
<summary>
Gets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog output.</param>
<param name="outputNum">The number of the analog output to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputGet(System.Int32,System.Int64,System.String)">
<summary>
Gets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog output.</param>
<param name="outputNum">The number of the analog output to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputGet(System.String,System.Int64,System.String)">
<summary>
Gets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to retrieve the value of the analog output.</param>
<param name="outputNum">The number of the analog output to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified analog output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputSet(System.Int32,System.Int64,System.Double)">
<summary>
Sets the value of a specified analog output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputSet(System.String,System.Int64,System.Double)">
<summary>
Sets the value of a specified analog output.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputSet(System.Int32,System.Int64,System.Double,System.Int32)">
<summary>
Sets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputSet(System.String,System.Int64,System.Double,System.Int32)">
<summary>
Sets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputSet(System.Int32,System.Int64,System.Double,System.String)">
<summary>
Sets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.AnalogOutputSet(System.String,System.Int64,System.Double,System.String)">
<summary>
Sets the value of a specified analog output.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the value of the analog output.</param>
<param name="outputNum">The number of the analog output to set.</param>
<param name="value">The value to set to the specified analog output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalInputGet(System.Int32,System.Int64)">
<summary>
Gets the value of the specified digital input bit.
Executes on task 1.
</summary>
<param name="axis">The axis from which to get the digital input bit.</param>
<param name="inputNum">The digital input bit to get.</param>
<returns>
The value of the specified digital input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalInputGet(System.String,System.Int64)">
<summary>
Gets the value of the specified digital input bit.
Executes on task 1.
</summary>
<param name="axis">The axis from which to get the digital input bit.</param>
<param name="inputNum">The digital input bit to get.</param>
<returns>
The value of the specified digital input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalInputGet(System.Int32,System.Int64,System.Int32)">
<summary>
Gets the value of the specified digital input bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital input bit.</param>
<param name="inputNum">The digital input bit to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalInputGet(System.String,System.Int64,System.Int32)">
<summary>
Gets the value of the specified digital input bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital input bit.</param>
<param name="inputNum">The digital input bit to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalInputGet(System.Int32,System.Int64,System.String)">
<summary>
Gets the value of the specified digital input bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital input bit.</param>
<param name="inputNum">The digital input bit to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalInputGet(System.String,System.Int64,System.String)">
<summary>
Gets the value of the specified digital input bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital input bit.</param>
<param name="inputNum">The digital input bit to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputGet(System.Int32,System.Int64)">
<summary>
Gets the value of the specified digital output bit.
Executes on task 1.
</summary>
<param name="axis">The axis from which to get the digital output bit.</param>
<param name="outputNum">The digital output bit to get.</param>
<returns>
The value of the specified digital output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputGet(System.String,System.Int64)">
<summary>
Gets the value of the specified digital output bit.
Executes on task 1.
</summary>
<param name="axis">The axis from which to get the digital output bit.</param>
<param name="outputNum">The digital output bit to get.</param>
<returns>
The value of the specified digital output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputGet(System.Int32,System.Int64,System.Int32)">
<summary>
Gets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital output bit.</param>
<param name="outputNum">The digital output bit to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputGet(System.String,System.Int64,System.Int32)">
<summary>
Gets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital output bit.</param>
<param name="outputNum">The digital output bit to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputGet(System.Int32,System.Int64,System.String)">
<summary>
Gets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital output bit.</param>
<param name="outputNum">The digital output bit to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputGet(System.String,System.Int64,System.String)">
<summary>
Gets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis from which to get the digital output bit.</param>
<param name="outputNum">The digital output bit to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified digital output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputSet(System.Int32,System.Int64,System.Int64)">
<summary>
Sets the value of the specified digital output bit.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputSet(System.String,System.Int64,System.Int64)">
<summary>
Sets the value of the specified digital output bit.
Executes on task 1.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputSet(System.Int32,System.Int64,System.Int64,System.Int32)">
<summary>
Sets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputSet(System.String,System.Int64,System.Int64,System.Int32)">
<summary>
Sets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputSet(System.Int32,System.Int64,System.Int64,System.String)">
<summary>
Sets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.DigitalOutputSet(System.String,System.Int64,System.Int64,System.String)">
<summary>
Sets the value of the specified digital output bit.
Executes on the specified task.
</summary>
<param name="axis">The axis on which to set the digital output bit.</param>
<param name="outputNum">The digital output bit to set.</param>
<param name="value">The value of the specified digital output bit.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryInputGet(System.Int64)">
<summary>
Gets the value of the specified virtual binary input bit.
Executes on task 1.
</summary>
<param name="inputNum">The virtual binary input bit to get.</param>
<returns>
The value of the specified virtual binary input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryInputGet(System.Int64,System.Int32)">
<summary>
Gets the value of the specified virtual binary input bit.
Executes on the specified task.
</summary>
<param name="inputNum">The virtual binary input bit to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual binary input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryInputGet(System.Int64,System.String)">
<summary>
Gets the value of the specified virtual binary input bit.
Executes on the specified task.
</summary>
<param name="inputNum">The virtual binary input bit to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual binary input bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryInputSet(System.Int64,System.Int64)">
<summary>
Sets the value of the specified virtual binary input bit.
Executes on task 1.
</summary>
<param name="inputNum">The virtual binary input bit to set.</param>
<param name="value">The value to which you set the virtual binary input bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryInputSet(System.Int64,System.Int64,System.Int32)">
<summary>
Sets the value of the specified virtual binary input bit.
Executes on the specified task.
</summary>
<param name="inputNum">The virtual binary input bit to set.</param>
<param name="value">The value to which you set the virtual binary input bit.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryInputSet(System.Int64,System.Int64,System.String)">
<summary>
Sets the value of the specified virtual binary input bit.
Executes on the specified task.
</summary>
<param name="inputNum">The virtual binary input bit to set.</param>
<param name="value">The value to which you set the virtual binary input bit.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryOutputGet(System.Int64)">
<summary>
Gets the value of the specified virtual binary output bit.
Executes on task 1.
</summary>
<param name="outputNum">The virtual binary output bit to get.</param>
<returns>
The value of the specified virtual binary output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryOutputGet(System.Int64,System.Int32)">
<summary>
Gets the value of the specified virtual binary output bit.
Executes on the specified task.
</summary>
<param name="outputNum">The virtual binary output bit to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual binary output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryOutputGet(System.Int64,System.String)">
<summary>
Gets the value of the specified virtual binary output bit.
Executes on the specified task.
</summary>
<param name="outputNum">The virtual binary output bit to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual binary output bit.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryOutputSet(System.Int64,System.Int64)">
<summary>
Sets the value of the specified virtual binary output bit.
Executes on task 1.
</summary>
<param name="outputNum">The virtual binary output bit to set.</param>
<param name="value">The value to which you set the virtual binary output bit.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryOutputSet(System.Int64,System.Int64,System.Int32)">
<summary>
Sets the value of the specified virtual binary output bit.
Executes on the specified task.
</summary>
<param name="outputNum">The virtual binary output bit to set.</param>
<param name="value">The value to which you set the virtual binary output bit.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualBinaryOutputSet(System.Int64,System.Int64,System.String)">
<summary>
Sets the value of the specified virtual binary output bit.
Executes on the specified task.
</summary>
<param name="outputNum">The virtual binary output bit to set.</param>
<param name="value">The value to which you set the virtual binary output bit.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterInputGet(System.Int64)">
<summary>
Gets the value of a specified virtual register input.
Executes on task 1.
</summary>
<param name="inputNum">The number of the virtual register input to get.</param>
<returns>
The value of the specified virtual register input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterInputGet(System.Int64,System.Int32)">
<summary>
Gets the value of a specified virtual register input.
Executes on the specified task.
</summary>
<param name="inputNum">The number of the virtual register input to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual register input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterInputGet(System.Int64,System.String)">
<summary>
Gets the value of a specified virtual register input.
Executes on the specified task.
</summary>
<param name="inputNum">The number of the virtual register input to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual register input.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterInputSet(System.Int64,System.Double)">
<summary>
Sets the value of a specified virtual register input.
Executes on task 1.
</summary>
<param name="inputNum">The number of the virtual register input to set.</param>
<param name="value">The value to set to the virtual register input.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterInputSet(System.Int64,System.Double,System.Int32)">
<summary>
Sets the value of a specified virtual register input.
Executes on the specified task.
</summary>
<param name="inputNum">The number of the virtual register input to set.</param>
<param name="value">The value to set to the virtual register input.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterInputSet(System.Int64,System.Double,System.String)">
<summary>
Sets the value of a specified virtual register input.
Executes on the specified task.
</summary>
<param name="inputNum">The number of the virtual register input to set.</param>
<param name="value">The value to set to the virtual register input.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterOutputGet(System.Int64)">
<summary>
Gets the value of a specified virtual register output.
Executes on task 1.
</summary>
<param name="outputNum">The number of the virtual register output to get.</param>
<returns>
The value of the specified virtual register output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterOutputGet(System.Int64,System.Int32)">
<summary>
Gets the value of a specified virtual register output.
Executes on the specified task.
</summary>
<param name="outputNum">The number of the virtual register output to get.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual register output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterOutputGet(System.Int64,System.String)">
<summary>
Gets the value of a specified virtual register output.
Executes on the specified task.
</summary>
<param name="outputNum">The number of the virtual register output to get.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
<returns>
The value of the specified virtual register output.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterOutputSet(System.Int64,System.Double)">
<summary>
Sets the value of a specified virtual register output.
Executes on task 1.
</summary>
<param name="outputNum">The number of the virtual register output to set.</param>
<param name="value">The value to set to the virtual register output.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterOutputSet(System.Int64,System.Double,System.Int32)">
<summary>
Sets the value of a specified virtual register output.
Executes on the specified task.
</summary>
<param name="outputNum">The number of the virtual register output to set.</param>
<param name="value">The value to set to the virtual register output.</param>
<param name="executionTaskIndex">The index of the task to execute the AeroScript command on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Commands.IOCommands.VirtualRegisterOutputSet(System.Int64,System.Double,System.String)">
<summary>
Sets the value of a specified virtual register output.
Executes on the specified task.
</summary>
<param name="outputNum">The number of the virtual register output to set.</param>
<param name="value">The value to set to the virtual register output.</param>
<param name="executionTaskName">The string name of the task to execute the AeroScript command on.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompiledAeroScript">
<summary>
Represents compiled AeroScript (either a program or a library) that can be run by an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompiledAeroScript.#ctor(System.String,System.Boolean,System.Byte[],System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.CompilerResult},System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompiledAeroScript.AeroScriptSourceFileName">
<summary>
Gets the name of the AeroScript source file that was compiled, or null if there was no source file (if the AeroScript source was compiled in-memory).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompiledAeroScript.IsAeroScriptLibrary">
<summary>
Gets whether or not this represents a compiled AeroScript library.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompiledAeroScript.CompilerWarnings">
<summary>
Gets the list of warnings that occurred during compilation of the AeroScript source.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompiledAeroScript.CompiledBytes">
<summary>
Gets the bytes of the compiled AeroScript program or library.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompiledAeroScript.NumberOfSourceLines">
<summary>
Gets the number of lines of source code of the compiled AeroScript source.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ICompiler">
<summary>
An interface to compile AeroScript programs and libraries for an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICompiler.CompileControllerFile(System.String)">
<summary>
Compiles the specified controller file as an AeroScript source file and returns the compiled AeroScript program or library.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICompiler.CompileTextAsProgram(System.String)">
<summary>
Compiles the specified text as a program and returns the compiled AeroScript program.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ICompiler.CompileTextAsLibrary(System.String)">
<summary>
Compiles the specified text as a library and returns the compiled AeroScript library.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Compiler">
<summary>
A class to compile AeroScript programs and libraries for an Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.#ctor(Aerotech.Automation1.DotNet.ControllerFiles,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Compiler.AeroScriptProgramSourceFileExtension">
<summary>
Gets the file extension for AeroScript program source files that will be compiled to an AeroScript program. This returns ".ascript".
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Compiler.AeroScriptLibrarySourceFileExtension">
<summary>
Gets the file extension for AeroScript library source files that will be compiled to an AeroScript library. This returns ".ascriptlib".
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Compiler.CompiledAeroScriptProgramFileExtension">
<summary>
Gets the file extension for compiled AeroScript programs. This returns ".a1exe".
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Compiler.CompiledAeroScriptLibraryFileExtension">
<summary>
Gets the file extension for compiled AeroScript libraries. This returns ".a1lib".
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.CompileControllerFile(System.String)">
<summary>
Compiles the specified controller file as an AeroScript source file and returns the compiled AeroScript program or library.
If the file fails to compile, a <see cref="T:Aerotech.Automation1.DotNet.CompileException"/> is thrown which contains the list of compiler error (<see cref="P:Aerotech.Automation1.DotNet.CompileException.CompilerErrors"/>).
</summary>
<param name="controllerFileName">The controller file to compile as an AeroScript source file.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> object that is the compiled AeroScript program or library.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.CompileControllerFile(System.String,System.Boolean)">
<summary>
Compiles the specified controller file as an AeroScript source file and returns the compiled AeroScript program or library.
If the file fails to compile, a <see cref="T:Aerotech.Automation1.DotNet.CompileException"/> is thrown which contains the list of compiler error (<see cref="P:Aerotech.Automation1.DotNet.CompileException.CompilerErrors"/>).
</summary>
<param name="controllerFileName">The controller file to compile as an AeroScript source file.</param>
<param name="compileWithDebugInformation">Whether or not to compile the specified controller file with debug information.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> object that is the compiled AeroScript program or library.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.CompileTextAsProgram(System.String)">
<summary>
Compiles the specified text as a program and returns the compiled AeroScript program.
If the text fails to compile, a <see cref="T:Aerotech.Automation1.DotNet.CompileException"/> is thrown which contains the list of compiler error (<see cref="P:Aerotech.Automation1.DotNet.CompileException.CompilerErrors"/>).
</summary>
<param name="textAeroScriptProgramSource">The text to compile as an AeroScript program.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> object that is the compiled AeroScript program.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.CompileTextAsLibrary(System.String)">
<summary>
Compiles the specified text as a library and returns the compiled AeroScript library.
If the text fails to compile, a <see cref="T:Aerotech.Automation1.DotNet.CompileException"/> is thrown which contains the list of compiler error (<see cref="P:Aerotech.Automation1.DotNet.CompileException.CompilerErrors"/>).
</summary>
<param name="textAeroScriptLibrarySource">The text to compile as an AeroScript library.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> object that is the compiled AeroScript library.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.Compile(System.String,System.Byte[],System.Boolean,System.Boolean,Aerotech.Automation1.DotNet.IFileResolver,Aerotech.Automation1.DotNet.AxisSet,Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache)">
<summary>
Compiles a program or library as provided by a raw byte array of the source. Any and all compiler dll interaction (i.e. calls to CompilerPInvokeInterface) should be
done in this method or methods only called from this method, nowhere else.
</summary>
<param name="aeroscriptSourceFileName">The file name of an AeroScript source file, or null if there is no source (i.e. in-memory compilation not from a file)</param>
<param name="stringBytes">The raw bytes that represent the string text AeroScript to compile</param>
<param name="isAeroScriptLibrary">Whether or not to compile the specified AeroScript as a library or a program.</param>
<param name="compileWithDebuggingSymbols">Whether or not to compile the specified AeroScript with debugging information.</param>
<param name="fileResolver">The <see cref="T:Aerotech.Automation1.DotNet.IFileResolver"/> object that the source file system that the file came from and where to find included files, if this is null then it is assumed this is _not_ a file (so pass null when compiling in-memory strings).</param>
<param name="axisSet">The set of axes to load into the compiler for axis names.</param>
<param name="compilerIncludeAndImportCache">A cache of all the program source files that need to be included when compiled AeroScript and a cache of all the compiled library files that need to be imported when compiling AeroScript.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> object representing the compiled output of the AeroScript source.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.IsAeroScriptSourceFile(System.String)">
<summary>
Returns whether the specified file name or path represents an AeroScript _source_ file (either a _program_ source file or a _library_ source file, never a compiled file).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.IsCompiledAeroScriptFile(System.String)">
<summary>
Returns whether the specified file name or path represents a _compiled_ AeroScript file (either a compiled _program_ file or a compiled _library_ file, never a source file).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.IsAeroScriptProgramFile(System.String)">
<summary>
Returns whether the specified file name or path represents an AeroScript _program_ file (either a program _source_ file or a _compiled_ program file, never a library file).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.IsAeroScriptLibraryFile(System.String)">
<summary>
Returns whether the specified file name or path represents an AeroScript _library_ file (either a library _source_ file or a _compiled_ library file, never a program file).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Compiler.GetCompiledAeroScriptFileName(System.String)">
<summary>
Returns the file name or path changed to represent the compiled AeroScript file of the specified AeroScript source file (e.g. foo.ascript -> foo.a1exe).
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompilerVersionException">
<summary>
An exception that should be thrown when the compiler library version does not match the .Net API version.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerVersionException.#ctor(System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompileException">
<summary>
The exception that is thrown when AeroScript source fails to compile. This exception includes the list of compiler errors and warnings generated from compiling the AeroScript source.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompileException.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.CompilerResult},System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.CompilerResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompileException.AeroScriptSourceFileName">
<summary>
Gets the name of the AeroScript source file that was compiled, or null if there was no source file (if the AeroScript source was compiled in-memory).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompileException.CompilerErrors">
<summary>
Gets the list of errors that occurred during compilation of the AeroScript source.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompileException.CompilerWarnings">
<summary>
Gets the list of warnings that occurred during compilation of the AeroScript source.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerSetAxisNames(System.IntPtr,System.String[])">
<summary>
Sets the list of axis names used by the compiler.
</summary>
<remarks>These strings aren't marshaled special because axis names can only be ASCII (they cannot be Unicode).</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerAddAutoImportFile(System.IntPtr,System.String,System.Byte[])">
<summary>
Adds a compiled library file into the compiler for auto-importing.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerOpen">
<summary>
Opens an instance of the compiler.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerClose(System.IntPtr)">
<summary>
Closes a compiler handle.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerSetFileOpenCallbacks(System.IntPtr,Aerotech.Automation1.DotNet.CompilerPInvokeInterface.FileCallbackGetSize,Aerotech.Automation1.DotNet.CompilerPInvokeInterface.FileCallbackGetData)">
<summary>
Sets the callbacks for .NET to get the file size and get the contents of an #included AeroScript file, primarily for resolving #includes in a controller file.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerCompileString(System.IntPtr,System.Byte[],System.Byte[],System.Boolean,System.Boolean)">
<summary>
Compiles a string. Call <see cref="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerGetOutputBytes(System.IntPtr,System.Byte[]@,System.UInt32@)"/> to get the compiled output.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerGetOutputBytes(System.IntPtr,System.Byte[]@,System.UInt32@)">
<summary>
Gets the compiled output bytes and number of source code lines from <see cref="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerCompileString(System.IntPtr,System.Byte[],System.Byte[],System.Boolean,System.Boolean)"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerGetNumBuildResults(System.IntPtr)">
<summary>
Gets the number of build results (errors and warnings).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerGetBuildResultAtIndex(System.IntPtr,System.UInt64,System.String@,System.String@,System.Boolean@,System.UInt32@,System.UInt32@,System.UInt32@,System.UInt32@)">
<summary>
Gets a build result by its index.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerDebugObjectOpenFromBytes(System.Byte[])">
<summary>
Gets the compiler debug object from the bytes of compiled AeroScript.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerDebugObjectClose(System.IntPtr)">
<summary>
Closes a compiler debug handle.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerDebugObjectGetVariableInformation(System.IntPtr,System.UInt32@)">
<summary>
Retrieves program or library variable information from a compiler debug handle.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerDebugObjectFileGetBytes(System.IntPtr,System.UInt32@)">
<summary>
Retrieves program or library variable information from a compiler debug handle.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerDebugObjectStripDebugInformation(System.IntPtr)">
<summary>
Strips debug information from a compiler debug handle.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.MarshalDotNetStringToCBytes(System.String)">
<summary>
Takes a .NET Unicode string and converts it into raw bytes to be passed to the compiler's C API.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.MarshalCBytesToDotNetString(System.Byte[])">
<summary>
Takes bytes retrieved from the compiler's C API and returns a .NET Unicode string.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.FileCallbackGetSize">
<summary>
The delegate for C Compiler callback to ask how big of a file we are about to get and the length of the full path, so the compiler can allocate memory for them.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.FileCallbackGetData">
<summary>
The delegate for C Compiler callback to ask for the data for a file and its full path.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerPInvokeException">
<summary>
Represents an error coming out of a call into the C Compiler API functions.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerPInvokeException.#ctor(System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerPInvokeInterface.CompilerPInvokeException.Error">
<summary>
Gets the error id returned from the compiler call.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompilerResult">
<summary>
Represents a compilation error or warning in AeroScript source.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerResult.Message">
<summary>
Gets the error or warning message.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerResult.AeroScriptSourceFileName">
<summary>
Gets the name of the AeroScript source file that was compiled, or null if there was no source file (if the AeroScript was compiled in-memory).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerResult.StartingLine">
<summary>
Gets the starting line number of the error or warning.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerResult.EndingLine">
<summary>
Gets the ending line number of the error or warning.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerResult.StartingColumn">
<summary>
Gets the starting column number of the error or warning.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerResult.EndingColumn">
<summary>
Gets the ending column number of the error or warning.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler">
<summary>
This class encapsulates the Automation1Compiler handle.
Create a new instance of this class to open and initialize the Automation1Compiler with axis names and auto-import/auto-include files.
Use the <see cref="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.Compile(System.String,System.Byte[],System.Boolean,System.Boolean)"/> method to compile AeroScript using the pre-opened and
initialized CompilerHandle.
When you are done using this class, call the <see cref="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.Dispose"/> method to clean up any resources allocated for
the Compiler.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.fileCallbackGetSizeDelegate">
<summary>The delegate instance that points to the <see cref="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.getFileSize(System.IntPtr,System.UIntPtr,System.IntPtr,System.UIntPtr,System.Int32@,System.Int32@)"/> member method. This is used for PInvoking into the compiler to make sure the delegate instance the compiler has isn't GCed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.fileCallbackGetDataDelegate">
<summary>The delegate instance that points to the <see cref="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.getFileData(System.IntPtr,System.UIntPtr,System.IntPtr,System.UIntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> member method. This is used for PInvoking into the compiler to make sure the delegate instance the compiler has isn't GCed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.loadedIncludeFiles">
<summary>
This dictionary represents a cache of all the files that a program or library includes/imports (and all includes/imports that those files have).
This cache is first created when the compiler calls the FileCallbackGetSize delegate and is then used by the FileCallbackGetData delegate to provide
the compiler with the absolute path to the include/import and the content of that include/import.
The key in this dictionary is a tuple where the first item is the base file path representing a program or library and the second item is the relative path
of one of the included or imported files in the program or library. Both items from in this tuple are provided by the compiler.
The value in this dictionary is a tuple where the first item is the absolute path to the include/import and the second item is the binary content of that file.
Both of these values come from the file service.
This cache is used to make sure the data between the FileCallbackGetSize delegate and FileCallbackGetData delegate is consistent. It is not used to prevent
duplicate memory because the .NET API has no way of combining controller file paths into absolute paths and therefore has no way to identify the same file
included/imported by more than one file.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.#ctor(Aerotech.Automation1.DotNet.IFileResolver,Aerotech.Automation1.DotNet.AxisSet,Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache)">
<summary>
Creates a new InternalAeroScriptCompiler
This class wraps up usage of the Automation1Compiler into class easily usable from C#. Creating an instance of this
class will automatically open and initialize a CompilerHandle by adding all auto-import/auto-include files and axis names.
Call the <see cref="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.Dispose"/> method on this class when you are done using it to clean up all unmanaged
resources.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.Finalize">
<summary>
Finalizer
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.Compile(System.String,System.Byte[],System.Boolean,System.Boolean)">
<summary>
Compiles a program or library as provided by a raw byte array of the source. Any and all compiler dll interaction (i.e. calls to CompilerPInvokeInterface) should be
done in this method or methods only called from this method, nowhere else.
</summary>
<param name="aeroscriptSourceFileName">The file name of an AeroScript source file, or null if there is no source (i.e. in-memory compilation not from a file)</param>
<param name="stringBytes">The raw bytes that represent the string text AeroScript to compile</param>
<param name="isAeroScriptLibrary">Whether or not to compile the specified AeroScript as a library or a program.</param>
<param name="compileWithDebuggingSymbols">Whether or not to compile the specified AeroScript with debugging information.</param>
<returns>A <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> object representing the compiled output of the AeroScript source.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.Dispose">
<summary>
Cleans up any unmanaged resources created by this class.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.dispose(System.Boolean)">
<summary>
Closes this <see cref="T:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler"/> instance's CompilerHandle.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.openAndInitializeCompilerHandle(Aerotech.Automation1.DotNet.AxisSet,Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache)">
<summary>
Returns a CompilerHandle that has been opened and had the provided runtime axis names and auto-include/auto-import files
added to it.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.getCompilerResults(System.String,System.Boolean)">
<summary>
Returns the collection of compiler results from the last compilation on the specified compiler instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.getFileSize(System.IntPtr,System.UIntPtr,System.IntPtr,System.UIntPtr,System.Int32@,System.Int32@)">
<summary>
Gets the size of a file on the Automation1 Controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InternalAeroScriptCompiler.getFileData(System.IntPtr,System.UIntPtr,System.IntPtr,System.UIntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
<summary>
Gets the data in bytes of a file on the Automation1 Controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CalibrationFile">
<summary>
Represents a calibration file that can be configured on an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CalibrationFile.#ctor(System.Byte[])">
<summary>
Creates an instance of <see cref="T:Aerotech.Automation1.DotNet.CalibrationFile"/> from the specified bytes.
</summary>
<param name="contents">The contents of the calibration file as bytes.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.CalibrationFile.Contents">
<summary>
Gets the contents of the calibration file.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CalibrationFile.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Configuration`1">
<summary>
Represents configuration on the Automation1 controller that can be changed. Changes to configuration
require a controller reset to take effect. To perform a controller reset, see <see cref="M:Aerotech.Automation1.DotNet.Controller.Reset"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Configuration`1.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.Communication.ConfigurationFileType,System.String,System.Func{System.Byte[],`0})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Configuration`1.IsConfigurationSet">
<summary>
Gets whether or not the configuration is set and used by the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Configuration`1.SetConfiguration(`0)">
<summary>
Sets the specified configuration to the Automation1 controller. Changes to configuration require a controller reset
to take effect. To perform a controller reset, see <see cref="M:Aerotech.Automation1.DotNet.Controller.Reset"/>.
</summary>
<param name="value">The configuration value to set.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Configuration`1.RemoveConfiguration">
<summary>
Removes the configuration from the Automation1 controller so it is no longer set and will no longer be used by the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Configuration`1.GetConfiguration">
<summary>
Gets the configuration from the Automation1 controller.
</summary>
<returns>Returns the configuration value from the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Configuration`1.TryGetConfiguration(`0@)">
<summary>
Tries to get the configuration, if it is set and used by the Automation1 controller.
</summary>
<param name="value">The configuration from the Automation1 controller if it is set; otherwise, null.</param>
<returns>Returns true if the configuration is set and used by the Automation1 controller; otherwise, false.</returns>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfigurationChange">
<summary>
Represents a change to an Automation1 controller's configuration. To check to see if the
controller configuration has changed, see the <see cref="P:Aerotech.Automation1.DotNet.ConfigurationChange.HasChanged"/> property.
A configuration change does not indicate whether or not the configuration is currently being
used by the controller. A controller reset is required for the configuration to take effect.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfigurationChange.#ctor(Aerotech.Automation1.DotNet.ConfigurationChangeType)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChange.HasChanged">
<summary>
Gets whether or not the configuration changed on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChange.TypeOfChange">
<summary>
Gets how the configuration changed on the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfigurationChange.ConvertFrom(Aerotech.Automation1.Communication.FileSystemChangeKind)">
<summary>
Converts from <see cref="T:Aerotech.Automation1.Communication.FileSystemChangeKind"/> to <see cref="T:Aerotech.Automation1.DotNet.ConfigurationChangeType"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfigurationChange.CreateFrom(Aerotech.Automation1.Communication.ConfigurationFileChange)">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.ConfigurationChange"/> from <see cref="T:Aerotech.Automation1.Communication.ConfigurationFileChange"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfigurationChangeType">
<summary>
Represents how a controller configuration item changed on the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurationChangeType.Unchanged">
<summary>
The configuration is unchanged.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurationChangeType.Set">
<summary>
The configuration has been set on the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurationChangeType.Removed">
<summary>
The configuration has been removed from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfigurationItem">
<summary>
Represents a single component of configuration on an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfigurationItem.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings">
<summary>
Represents the configuration of AeroScript mappings on an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.#ctor(Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServerConnection,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection},Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatConnection)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings"/> to map AeroScript variables to various external interaction points.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.#ctor(System.Byte[])">
<summary>
Deserialization constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClients">
<summary>
Gets the list of Modbus clients that are part of this configuration.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServer">
<summary>
Gets the Modbus server that is part of this configuration.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.Ethercat">
<summary>
Gets the Ethercat connection that is part of this configuration.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServerConnection">
<summary>
Represents a Modbus TCP/IP server connection.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServerConnection.#ctor(System.String,System.Int32,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister},System.Int32)">
<summary>
Constructs a new Modbus server connection.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServerConnection.Name">
<summary>
Gets the name of this server.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServerConnection.ID">
<summary>
Gets the identifier for this server.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServerConnection.Index">
<summary>
Gets the connections index in the configuration file.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusServerConnection.Registers">
<summary>
Gets the list of registers for this server.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection">
<summary>
Represents a Modbus TCP/IP client connection.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection.#ctor(System.String,System.Int32,System.String,System.Int32,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister},System.Int32)">
<summary>
Constructs a new Modbus client connection.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection.Name">
<summary>
Gets the name of this client.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection.ServerID">
<summary>
Gets the identifier for the server that this client connects to.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection.ServerIPAddress">
<summary>
Gets the IP address for the server that this client connects to.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection.ServerPort">
<summary>
Gets the port for the server that this client connects to.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection.Index">
<summary>
Gets the connections index in the configuration file.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusClientConnection.Registers">
<summary>
Gets the list of registers for this client.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister">
<summary>
Represents a Modbus register.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.#ctor(Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification,System.String,System.Int32,System.Int32,System.Int32,System.String,Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType)">
<summary>
Constructs a new Modbus register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.Classification">
<summary>
Gets the classification for this register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.Name">
<summary>
Gets the name of this register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.BitAddress">
<summary>
Gets the bit address of this register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.ByteAddress">
<summary>
Gets the byte address of this register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.Count">
<summary>
Gets the count for this register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.Comment">
<summary>
Gets the comment for this register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegister.Type">
<summary>
Gets the type of this register.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatConnection">
<summary>
Represents an Ethercat connection.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatConnection.#ctor(System.String,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping})">
<summary>
Constructs a new Ethercat connection.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatConnection.Name">
<summary>
Gets the name of this connection.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatConnection.Index">
<summary>
Gets the connections index in the configuration file.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatConnection.Mappings">
<summary>
Gets the collection of mappings that are a part of this connection.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping">
<summary>
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.#ctor(Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingType,System.String,System.Int32,System.Int32,System.Int32,System.String,Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType)">
<summary>
Constructs a new Ethercat mapping.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.EthercatMappingType">
<summary>
Gets the type of this mapping.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.Name">
<summary>
Gets the name of this mapping.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.BitAddress">
<summary>
Gets the bit address of this register.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.ByteAddress">
<summary>
Gets the byte address of this mapping.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.Count">
<summary>
Gets the count for this mapping.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.Comment">
<summary>
Gets the comment for this mapping.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMapping.DataType">
<summary>
Gets the type of this mapping.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification">
<summary>
Gets the classification for a modbus register.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification.InputWords">
<summary>
Input word
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification.OutputWords">
<summary>
Output word
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification.InputBits">
<summary>
Input bit
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification.OutputBits">
<summary>
Output bit
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification.OutputWordsStatus">
<summary>
Output word status
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterClassification.OutputBitsStatus">
<summary>
Output bit status
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType">
<summary>
Data types for a modbus register.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.Float32">
<summary>
Float32 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.Float64">
<summary>
Float64 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.UInt8">
<summary>
UInt8 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.UInt16">
<summary>
UInt16 datat type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.UInt32">
<summary>
UInt32 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.UInt64">
<summary>
UInt64 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.Int8">
<summary>
Int8 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.Int16">
<summary>
Int16 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.Int32">
<summary>
Int32 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.Int64">
<summary>
Int64 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType.Bit">
<summary>
Bit data type.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingType">
<summary>
Types of ethercat mappings.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingType.RxPdo">
<summary>
Input mapping
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingType.TxPdo">
<summary>
Output mapping
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType">
<summary>
Data types for an ethercat mapping.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.UInt8">
<summary>
UInt8 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.UInt16">
<summary>
UInt16 datat type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.UInt32">
<summary>
UInt32 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.Int8">
<summary>
UInt64 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.Int16">
<summary>
Int16 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.Int32">
<summary>
Int32 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.Float32">
<summary>
Float32 data type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType.Float64">
<summary>
Float64 data type.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredControllerStartUp">
<summary>
A class to configure the start-up behavior of an Automation1 controller.
Changes to the controller start-up will take effect the next time a PC-based controller boots or the next time a drive-based controller is powered on.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredControllerStartUp.#ctor(System.Boolean)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredControllerStartUp"/> object.
</summary>
<param name="shouldAutomaticallyStartController">Whether or not the Automation1 controller should automatically start (which is the same as <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/>) when a PC-based controller boots or when a drive-based controller is powered on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredControllerStartUp.#ctor(System.Byte[])">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredControllerStartUp.ShouldAutomaticallyStartController">
<summary>
Gets whether or not the Automation1 controller should automatically start (which is the same as <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/>) when a PC-based controller boots or when a drive-based controller is powered on.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredControllerStartUp.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard">
<summary>
A class to change the configured PCIe HyperWire card that an Automation1 controller uses to communicate. It can either automatically detect or specify the card to use.
Changes to the configured PCIe HyperWire card require a controller reset to take effect.
</summary>
<remarks>
To configure the controller to automatically detect a card, set the mode to <see cref="F:Aerotech.Automation1.DotNet.HyperWireCardMode.AutoDetect"/>.
This mode will only work if a single card is both installed on the PC and is usable by the controller. Otherwise, a
specific card must be configured.
To configure the controller to use a specific card, set the mode to <see cref="F:Aerotech.Automation1.DotNet.HyperWireCardMode.Specific"/> and
select a card from the list of installed cards. To get a list of installed cards, use
<see cref="M:Aerotech.Automation1.DotNet.ControllerConfiguration.GetAllInstalledHyperWireCards"/>.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard.#ctor">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard"/> that configures an Automation1 controller
to automatically detect which PCIe HyperWire card to use. A controller will only be able to
detect which card to use if there is only a single card that is both installed on the PC and
is usable by that controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard.#ctor(Aerotech.Automation1.DotNet.InstalledHyperWireCard)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard"/> that configures an Automation1 controller to
use a specific PCIe HyperWire card.
</summary>
<param name="card">The specific PCIe HyperWire card to configure an Automation1 controller to use.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard.#ctor(System.Byte[])">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard.Mode">
<summary>
Gets how the Automation1 controller will select a PCIe HyperWire card to use.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard.SpecificCard">
<summary>
Gets the PCIe HyperWire card that is specifically configured on the Automation1 controller. The controller uses
this card when <see cref="P:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard.Mode"/> is set to <see cref="F:Aerotech.Automation1.DotNet.HyperWireCardMode.Specific"/>. Otherwise the controller
automatically detects which HyperWire card to use and this property is null.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredHyperWireCard.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireCardMode">
<summary>
Represents how the PCIe HyperWire card is detected by an Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireCardMode.AutoDetect">
<summary>
Configure an Automation1 controller to automatically detect which PCIe HyperWire card to use. If more
than one card is both installed on the PC and usable by the controller, the controller will not be
able to automatically detect a card. To configure the card in that case, use <see cref="F:Aerotech.Automation1.DotNet.HyperWireCardMode.Specific"/>.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireCardMode.Specific">
<summary>
Configure an Automation1 controller to use a specific PCIe HyperWire card. If more than one card is
both installed on the PC and usable by the controller, a card must be specifically configured.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredParameters">
<summary>
A class to change the configured parameters on an Automation1 controller. Configured parameters are different from active controller parameters.
Changes to the configured parameters require a controller reset to take effect but changes to active controller parameters take effect immediately (see <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Parameters"/>).
</summary>
<remarks>
Changes you make to a <see cref="T:Aerotech.Automation1.DotNet.ConfiguredParameters"/> object are not saved to the Automation1 controller until you set the configured parameters via
<see cref="P:Aerotech.Automation1.DotNet.Controller.Configuration"/>.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredParameters.#ctor">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredParameters"/> object that represents default controller parameters for an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredParameters.#ctor(Aerotech.Automation1.DotNet.ConfiguredParameters)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredParameters"/> object that copies parameters from another <see cref="T:Aerotech.Automation1.DotNet.ConfiguredParameters"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredParameters.#ctor(System.Byte[])">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredParameters"/> object given a series of bytes representing the configured parameters. This
method starts with default parameters and updates the parameters based on what is configured.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredParameters.System">
<summary>
Gets all controller parameters in the system parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredParameters.Axes">
<summary>
Gets the collection of controller parameters in the axis parameter category for each axis.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredParameters.Tasks">
<summary>
Gets the collection of controller parameters in the task parameter category for each task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredParameters.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredParameters.deserializeCategoryParameters``1(``0,System.Xml.Linq.XElement)">
<summary>
Deserializes the parameters for a specific category (system, axis, or task) in the specified XML element.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation">
<summary>
Represents the configuration of compiled AeroScript to load or run when the Automation1 controller starts
and what compiled AeroScript libraries and AeroScript program source files to automatically import during
AeroScript compilation.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.#ctor">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation"/> object that represents an empty set of compiled AeroScript programs and libraries to load to the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgramsToLoad">
<summary>
Gets the list of compiled AeroScript programs that will be loaded onto a specific task when the Automation1 controller starts. A single task can only have one loaded or running program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgramsToRun">
<summary>
Gets the list of compiled AeroScript programs that will be run on a specific task when the Automation1 controller starts. A single task can only have one loaded or running program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFilesToInclude">
<summary>
Gets the list of AeroScript source files that will be automatically included when compiling an AeroScript program or library.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrariesToLoad">
<summary>
Gets the list of compiled AeroScript libraries that will be loaded when the Automation1 controller starts and optionally automatically imported
when compiling an AeroScript program or library. Libraries are not loaded onto a task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram">
<summary>
Represents a compiled AeroScript program which is loaded or run on a task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.#ctor(System.String,System.Int32)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram"/> object that represents a compiled AeroScript program to load to the Automation1 controller.
</summary>
<param name="path">The path to the compiled AeroScript program on the Automation1 controller.</param>
<param name="taskIndex">The index of the task to load/run the compiled AeroScript program on.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.Path">
<summary>
Gets the path to the compiled AeroScript program on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.TaskIndex">
<summary>
Gets the task to run the compiled AeroScript program on.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.GetHashCode">
<summary>
Returns the hash code for this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.Equals(System.Object)">
<summary>
Returns whether this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram"/> object is equal to another object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.Equals(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram)">
<summary>
Returns whether this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram"/> object is equal to another <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.op_Equality(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram,Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram)">
<summary>
Determines whether the specified objects are equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram.op_Inequality(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram,Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledProgram)">
<summary>
Determines whether the specified objects are not equal to each other.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary">
<summary>
Represents a compiled AeroScript library which is loaded on the Automation1 controller and can also
optionally be configured so that the library is automatically imported during AeroScript compilation.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.#ctor(System.String)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary"/> object that represents a compiled AeroScript library to load to the Automation1 controller.
</summary>
<param name="path">The path to the compiled AeroScript library on the Automation1 controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.#ctor(System.String,System.Boolean)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary"/> object that represents a compiled AeroScript library to load to the Automation1 controller
and can optionally be configured so that it is automatically imported during AeroScript compilation.
</summary>
<param name="path">The path to the compiled AeroScript library on the Automation1 controller.</param>
<param name="shouldAutoImport">Whether or not the compiled AeroScript library should be automatically imported during AeroScript compilation. Most of the time this should be set to false.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.Path">
<summary>
Gets the path to the compiled AeroScript library on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.ShouldAutoImport">
<summary>
Gets whether or not the compiled AeroScript library is automatically imported during AeroScript compilation.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.GetHashCode">
<summary>
Returns the hash code for this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.Equals(System.Object)">
<summary>
Returns whether this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary"/> object is equal to another object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.Equals(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary)">
<summary>
Returns whether this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary"/> object is equal to another <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.op_Equality(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary,Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary)">
<summary>
Determines whether the specified objects are equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary.op_Inequality(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary,Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.CompiledLibrary)">
<summary>
Determines whether the specified objects are not equal to each other.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile">
<summary>
Represents an AeroScript program source file that will be retrieved from the Automation1 controller and
automatically imported during AeroScript compilation.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile.#ctor(System.String)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile"/> object that represents an AeroScript source file that will be retrieved from the Automation1 controller and
automatically imported during AeroScript compilation.
</summary>
<param name="path">The path to the AeroScript program source file on the Automation1 controller.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile.Path">
<summary>
Gets the path to the AeroScript program source file on the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile.GetHashCode">
<summary>
Returns the hash code for this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile.Equals(System.Object)">
<summary>
Returns whether this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile"/> object is equal to another object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile.Equals(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile)">
<summary>
Returns whether this <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile"/> object is equal to another <see cref="T:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile.op_Equality(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile,Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile)">
<summary>
Determines whether the specified objects are equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile.op_Inequality(Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile,Aerotech.Automation1.DotNet.ConfiguredProgramAutomation.ProgramSourceFile)">
<summary>
Determines whether the specified objects are not equal to each other.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IControllerConfiguration.ControllerName">
<summary>
Gets a way to change the configured controller name on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IControllerConfiguration.Parameters">
<summary>
Gets a way to change the configured parameters on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IControllerConfiguration.HyperWireCard">
<summary>
Gets a way to change the configured PCIe HyperWire card on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IControllerConfiguration.Calibration1DFile">
<summary>
Gets a way to change the configured 1D calibration file on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IControllerConfiguration.Calibration2DFile">
<summary>
Gets a way to change the configured 2D calibration file on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IControllerConfiguration.Galvo2DCalibrationFile">
<summary>
Gets a way to change the configured 2D galvo calibration file on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IControllerConfiguration.GalvoPowerCorrectionFile">
<summary>
Gets a way to change the configured galvo power correction file on the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerConfiguration">
<summary>
A class to change the configuration of the Automation1 controller. Configuration is what defines the behavior of the Automation1 controller.
Changes to configuration require a controller reset to take effect.
</summary>
<remarks>
Examples include parameters and calibration files. Changes to configuration on
the Automation1 controller are immediately saved but changes to configuration are not used by the controller until a controller reset happens. To reset the
controller use <see cref="M:Aerotech.Automation1.DotNet.Controller.Reset"/>.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerConfiguration.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ControllerEventArgsCreator)">
<summary>
Constructor.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerConfiguration.Changed">
<summary>
Raised when the Automation1 controller's configuration changes. Changes to configuration require a controller reset to take effect.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerConfiguration.onChanged(Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerConfiguration.Changed"/> event.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.ControllerName">
<summary>
Gets a way to change the configured controller name on the Automation1 controller. Changes to the configured controller name require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.Parameters">
<summary>
Gets a way to change the configured parameters on the Automation1 controller. Configured parameters are different from active controller parameters.
Changes to the configured parameters require a controller reset to take effect but changes to active controller parameters take effect immediately (see <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Parameters"/>).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.HyperWireCommunication">
<summary>
Gets a way to configure the HyperWire communication of the Automation1 controller. This includes turning off HyperWire communication to prevent the controller from communicating to HyperWire devices
thus only using virtual axes. Changes to the HyperWire communication require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.HyperWireCard">
<summary>
Gets a way to configure what PCIe HyperWire card the Automation1 controller uses to communicate. This configuration is only used by PC-based controllers. This includes configuring
the controller to automatically select a PCIe HyperWire card to use or configuring a specific PCIe HyperWire card yourself. Changes to the configured HyperWire card require a
controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.Calibration1DFile">
<summary>
Gets a way to change the configured 1D calibration file on the Automation1 controller. Changes to the configured 1D calibration file require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.Calibration2DFile">
<summary>
Gets a way to change the configured 2D calibration file on the Automation1 controller. Changes to the configured 2D calibration file require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.Galvo2DCalibrationFile">
<summary>
Gets a way to change the configured 2D galvo calibration file on the Automation1 controller. Changes to the configured 2D galvo calibration file require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.GalvoPowerCorrectionFile">
<summary>
Gets a way to change the configured galvo power correction file on the Automation1 controller. Changes to the configured galvo power correction file require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.ProgramAutomation">
<summary>
Gets a way to change the configured program automation on the Automation1 controller. Changes to the configured program automation require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.ControllerStartUp">
<summary>
Gets a way to change the configured start-up behavior on the Automation1 controller. Changes to the controller start-up will take effect the next time a PC-based controller boots or the next time a drive-based controller is powered on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerConfiguration.AeroScriptMappings">
<summary>
Gets a way to change the configured AeroScript mappings on the Automation1 controller. Changes to the configured AeroScript mappings require a controller reset to take effect.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerConfiguration.GetAllInstalledHyperWireCards">
<summary>
Returns a list of all PCIe HyperWire cards installed in the PC, even cards that are not yet usable
by the Automation1 controller.
</summary>
<remarks>
PCIe HyperWire cards can be installed in the PC but not usable by the Automation1 controller.
To check to see if a card is usable see <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.IsUsableByController"/>.
If a PCIe HyperWire card is not usable by the Automation1 controller, see the help documentation
to setup the PCIe HyperWire card.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerConfiguration.RaiseChangedEvent(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.ConfigurationFileChange[])">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerConfiguration.Changed"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerConfiguration.TryGetIntCultureInvariant(System.Xml.Linq.XAttribute,System.Int32@)">
<summary>
Converts the value stored in the <see cref="T:System.Xml.Linq.XAttribute"/> to an integer in a culture invariant way.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerConfiguration.TryGetIntCultureInvariant(System.Xml.Linq.XElement,System.Int32@)">
<summary>
Converts the value stored in the <see cref="T:System.Xml.Linq.XElement"/> to an integer in a culture invariant way.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerName">
<summary>
A class to change the configured controller name on an Automation1 controller. Changes to the configured
name require a controller reset to take effect.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerName.#ctor(System.String)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ControllerName"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerName.#ctor(System.Byte[])">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerName.Value">
<summary>
Gets the configured controller name.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerName.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireCommunication">
<summary>
A class to configure the HyperWire communication mode of the Automation1 controller. This includes turning off HyperWire communication
to prevent the controller from communicating to HyperWire devices thus only using virtual axes.
Changes to the HyperWire communication require a controller reset to take effect.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.HyperWireCommunication.#ctor(Aerotech.Automation1.DotNet.HyperWireCommunicationMode)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.HyperWireCommunication"/> object that specifies the <see cref="T:Aerotech.Automation1.DotNet.HyperWireCommunicationMode"/>
and with no external synchronization of HyperWire communication.
</summary>
<param name="mode">The mode that determines whether or not an Automation1 controller uses HyperWire communication.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.HyperWireCommunication.#ctor(Aerotech.Automation1.DotNet.HyperWireCommunicationMode,Aerotech.Automation1.DotNet.HyperWireExternalSynchronization)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.HyperWireCommunication"/> object that specifies the <see cref="T:Aerotech.Automation1.DotNet.HyperWireCommunicationMode"/>
and the <see cref="T:Aerotech.Automation1.DotNet.HyperWireExternalSynchronization"/>.
</summary>
<param name="mode">The mode that determines whether or not an Automation1 controller uses HyperWire communication.</param>
<param name="externalSynchronization">The configuration for an external synchronization of HyperWire communication.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.HyperWireCommunication.#ctor(System.Byte[])">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCommunication.Mode">
<summary>
Gets whether or not HyperWire communication is being used by the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCommunication.ExternalSynchronization">
<summary>
Gets the configuration for an external synchronization of HyperWire communication, or null if there is no external synchronization configured.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.HyperWireCommunication.GetBytes">
<summary>
Gets the serialized bytes of the configuration to be saved to the controller file system.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireExternalSynchronization">
<summary>
Represents the configuration for an external synchronization of HyperWire communication.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.HyperWireExternalSynchronization.#ctor(Aerotech.Automation1.DotNet.HyperWireExternalSynchronizationSignal,System.Int32)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.HyperWireExternalSynchronization"/> object that represents
the configuration for an external synchronization of HyperWire communication.
</summary>
<param name="signal">The external signal that will be used for external synchronization of HyperWire communication. Must not be <see cref="F:Aerotech.Automation1.DotNet.HyperWireExternalSynchronizationSignal.None"/>.</param>
<param name="signalFrequency">The update frequency of the external signal, in Hz.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireExternalSynchronization.Signal">
<summary>
Gets the external signal that will be used for external synchronization of HyperWire communication.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireExternalSynchronization.SignalFrequency">
<summary>
Gets the update frequency of the external signal, in Hz.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireCommunicationMode">
<summary>
Represents whether or not an Automation1 controller will use HyperWire communication or not.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireCommunicationMode.Off">
<summary>
Configure an Automation1 controller to not use HyperWire communication.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireCommunicationMode.On">
<summary>
Configure an Automation1 controller to use HyperWire communication.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.InstalledHyperWireCard">
<summary>
Represents a PCIe HyperWire card that is installed on the system. To see if the card is usable by
the Automation1 controller, see <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.IsUsableByController"/>.
</summary>
<remarks>
A PCIe HyperWire card may be installed on a PC but not usable by the Automation1 controller. If that is
the case, the card needs to be setup under the real time operating system. See the help documentation for
how to setup a PCIe HyperWire card.
If a PCIe HyperWire card is installed and usable by the Automation1 controller, it may be used to
communicate with the Automation1 controller. To configure a PCIe HyperWire card to communicate with
your Automation1 controller, see <see cref="P:Aerotech.Automation1.DotNet.ControllerConfiguration.HyperWireCard"/>.
To get a list of installed PCIe HyperWire cards on your system, see <see cref="M:Aerotech.Automation1.DotNet.ControllerConfiguration.GetAllInstalledHyperWireCards"/>.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.InstalledHyperWireCard.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.BusNumber">
<summary>
Gets the PCI bus number this PCIe HyperWire card is on. This is used along with <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.DeviceNumber"/> and <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.FunctionNumber"/> to uniquely identify the PCIe card in the PC.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.DeviceNumber">
<summary>
Gets the PCI device number for this PCIe HyperWire card. This is used along with <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.BusNumber"/> and <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.FunctionNumber"/> to uniquely identify the PCIe card in the PC.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.FunctionNumber">
<summary>
Gets the PCI function number for this PCIe HyperWire card. This is used along with <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.BusNumber"/> and <see cref="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.DeviceNumber"/> to uniquely identify the PCIe card in the PC.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.VendorId">
<summary>
Gets the vendor ID of this PCIe HyperWire card.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.DeviceId">
<summary>
Gets the device ID of this PCIe HyperWire card.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.InstalledHyperWireCard.IsUsableByController">
<summary>
Gets whether the PCIe HyperWire card can be used by the Automation1 controller.
</summary>
<remarks>
A PCIe HyperWire card may be installed on a PC but not usable by the Automation1 controller. If that is the case, the card needs to be setup
under the real time operating system. See the help documentation for how to setup a PCIe HyperWire card.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.InstalledHyperWireCard.op_Equality(Aerotech.Automation1.DotNet.InstalledHyperWireCard,Aerotech.Automation1.DotNet.InstalledHyperWireCard)">
<summary>
Determines whether the specified objects are equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InstalledHyperWireCard.op_Inequality(Aerotech.Automation1.DotNet.InstalledHyperWireCard,Aerotech.Automation1.DotNet.InstalledHyperWireCard)">
<summary>
Determines whether the specified objects are not equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InstalledHyperWireCard.Equals(System.Object)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InstalledHyperWireCard.Equals(Aerotech.Automation1.DotNet.InstalledHyperWireCard)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.InstalledHyperWireCard.GetHashCode">
<summary>
Returns a hash code for this instance.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Controller">
<summary>
Represents a connection to an Automation1 controller. This is the main class for interacting with an Automation1 controller.
It has many properties and methods for accessing the features of the Automation1 controller.
Begin by connecting with the <see cref="M:Aerotech.Automation1.DotNet.Controller.Connect"/> static method and then interact with the returned <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Controller.controllerStateLock">
<summary>The lock used to protect and/or access <see cref="F:Aerotech.Automation1.DotNet.Controller.isResetting"/>, <see cref="F:Aerotech.Automation1.DotNet.Controller.isStarting"/>, <see cref="F:Aerotech.Automation1.DotNet.Controller.isStopping"/> and nothing else.</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.#ctor(Aerotech.Automation1.Communication.IRequestLayer,System.String,System.Int32)">
<summary>
Private constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.Requester">
<summary>
The requester client object that provides access to the server.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.SupportedAxisCount">
<summary>
Gets the highest number of axes this controller supports. This is _not_ the maximum number of supported axes among
any Automation1 controller (which is <see cref="P:Aerotech.Automation1.DotNet.Constants.MaxTheoreticalAxisCount"/>), but rather the number of axes
this specific controller supports (which may be less). This is also not the number of axes actually connected or
configured, as those numbers might be lower than this. PC-based controllers have a supported number of axes of 32.
Drive-based controllers support less axes.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.SupportedTaskCount">
<summary>
Gets the highest number of tasks this controller supports. This is _not_ the maximum number of supported tasks among
any Automation1 controller (which is <see cref="P:Aerotech.Automation1.DotNet.Constants.MaxTheoreticalTaskCount"/>), but rather the number of tasks
this specific controller supports (which may be less). This is also not the number of tasks actually configured or
licensed, as those numbers might be lower than this. PC-based controllers have a supported number of tasks of 32.
Drive-based controllers support less tasks.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.Configuration">
<summary>
Gets a way to change the configuration of the Automation1 controller. Configuration is what defines the behavior of the Automation1 controller.
Changes to configuration usually require a controller reset to take effect.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.Files">
<summary>
Gets a way to read and write controller files on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.Compiler">
<summary>
Gets a way to compile AeroScript programs and libraries for the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.IsRunning">
<summary>
Gets whether or not the Automation1 controller has started and is currently running (i.e. running AeroScript programs or performing motion).
If the controller is running you can safely access the controller's runtime components via the <see cref="P:Aerotech.Automation1.DotNet.Controller.Runtime"/> property.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.Runtime">
<summary>
Gets a way to use the Automation1 controller's runtime components. Accessing this property is only valid if the controller is running.
You can check the state of the Automation1 controller with the <see cref="P:Aerotech.Automation1.DotNet.Controller.IsRunning"/> property.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Controller.Information">
<summary>
Gets general information about the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Connect">
<summary>
Connects to an Automation1 controller.
Use this overload to connect to a controller when the controller is installed on the same computer and has access control disabled.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.ConnectUsb">
<summary>
Connects to an Automation1 drive-based controller that is connected to the same Windows computer over USB.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact with an Automation1 drive-based controller that is connected to
the same Windows computer over USB. Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is
not running, it will remain not running), see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Connect(System.String,System.String)">
<summary>
Connects to an Automation1 controller, using the specified <paramref name="userName"/> and <paramref name="password"/>.
Use this overload to log in to a controller when the controller is installed on the same computer and has access control enabled.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="userName">The user name for a user with access to the Automation1 controller.</param>
<param name="password">The password for the specified user.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Connect(System.String)">
<summary>
Connects to an Automation1 controller running on the specified <paramref name="host"/>.
Use this overload to connect to a controller when the controller is installed on a different computer and has access control disabled.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="host">The host name or host IP address of the Automation1 controller to connect to.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Connect(System.String,System.String,System.String)">
<summary>
Connects to an Automation1 controller running on the specified <paramref name="host"/>, using the specified <paramref name="userName"/> and <paramref name="password"/>.
Use this overload to log in to a controller when the controller is installed on a different computer and has access control enabled.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="host">The host name or host IP address of the Automation1 controller to connect to.</param>
<param name="userName">The user name for a user with access to the Automation1 controller.</param>
<param name="password">The password for the specified user.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Connect(System.String,System.Int32)">
<summary>
Connects to an Automation1 controller running on the specified <paramref name="host"/> with the specified <paramref name="port"/>.
Use this overload to connect to a controller when the controller is installed on a different computer, is listening on a custom port, and has access control disabled.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="host">The host name or host IP address of the Automation1 controller to connect to.</param>
<param name="port">The port number of the Automation1 controller to connect to.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Connect(System.String,System.Int32,System.String,System.String)">
<summary>
Connects to an Automation1 controller running on the specified <paramref name="host"/> with the specified <paramref name="port"/>, using the
specified <paramref name="userName"/> and <paramref name="password"/>.
Use this overload to log in to a controller when the controller is installed on a different computer, is listening on a custom port, and has access control enabled.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="host">The host name or host IP address of the Automation1 controller to connect to.</param>
<param name="port">The port number of the Automation1 controller to connect to.</param>
<param name="userName">The user name for a user with access to the Automation1 controller.</param>
<param name="password">The password for the specified user.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.ConnectSecure(System.String)">
<summary>
Connects securely to an Automation1 controller.
Use this overload to connect securely to a controller when the controller is installed on the same computer and has access control disabled.
You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection.
See the Automation1 documentation to learn how to get a controller's certificate.
If the Automation1 controller's certificate does not match <paramref name="expectedCertificate"/>, a <see cref="T:Aerotech.Automation1.ControllerArgumentException"/> will be thrown.
To check if communication over your current connection is encrypted <see cref="P:Aerotech.Automation1.DotNet.ControllerInformation.IsConnectionEncrypted"/>.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact securely with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="expectedCertificate">The certificate used to verify the authenticity of the Automation1 controller.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a secure connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.ConnectSecure(System.String,System.String,System.String)">
<summary>
Connects securely to an Automation1 controller, using the specified <paramref name="userName"/> and <paramref name="password"/>.
Use this overload to log in securely to a controller when the controller is installed on the same computer and has access control enabled.
You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection.
See the Automation1 documentation to learn how to get a controller's certificate.
If the Automation1 controller's certificate does not match <paramref name="expectedCertificate"/>, a <see cref="T:Aerotech.Automation1.ControllerArgumentException"/> will be thrown.
To check if communication over your current connection is encrypted <see cref="P:Aerotech.Automation1.DotNet.ControllerInformation.IsConnectionEncrypted"/>.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact securely with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="userName">The user name for a user with access to the Automation1 controller.</param>
<param name="password">The password for the specified user.</param>
<param name="expectedCertificate">The certificate used to verify the authenticity of the Automation1 controller.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a secure connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.ConnectSecure(System.String,System.String)">
<summary>
Connects securely to an Automation1 controller running on the specified <paramref name="host"/>.
Use this overload to log in to a controller securely when the controller is installed on a different computer and has access control disabled.
You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection.
See the Automation1 documentation to learn how to get a controller's certificate.
If the Automation1 controller's certificate does not match <paramref name="expectedCertificate"/>, a <see cref="T:Aerotech.Automation1.ControllerArgumentException"/> will be thrown.
To check if communication over your current connection is encrypted <see cref="P:Aerotech.Automation1.DotNet.ControllerInformation.IsConnectionEncrypted"/>.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact securely with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="host">The host name or host IP address of the Automation1 controller to connect securely to.</param>
<param name="expectedCertificate">The certificate used to verify the authenticity of the Automation1 controller.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a secure connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.ConnectSecure(System.String,System.String,System.String,System.String)">
<summary>
Connects securely to an Automation1 controller running on the specified <paramref name="host"/>, using the specified <paramref name="userName"/> and <paramref name="password"/>.
Use this overload to log in to a controller securely when the controller is installed on a different computer and has access control enabled.
You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection.
See the Automation1 documentation to learn how to get a controller's certificate.
If the Automation1 controller's certificate does not match <paramref name="expectedCertificate"/>, a <see cref="T:Aerotech.Automation1.ControllerArgumentException"/> will be thrown.
To check if communication over your current connection is encrypted <see cref="P:Aerotech.Automation1.DotNet.ControllerInformation.IsConnectionEncrypted"/>.
</summary>
<remarks>
Use this method to create a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object in order to interact securely with an Automation1 controller.
Connecting will not change the running state of an Automation1 controller (i.e. if it has not started and is not running, it will remain not running),
see the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
<param name="host">The host name or host IP address of the Automation1 controller to connect securely to.</param>
<param name="userName">The user name for a user with access to the Automation1 controller.</param>
<param name="password">The password for the specified user.</param>
<param name="expectedCertificate">The certificate used to verify the authenticity of the Automation1 controller.</param>
<returns>A new <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object that represents a secure connection to the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Disconnect">
<summary>
Disconnects from the Automation1 controller.
Disconnecting will not change the running state of the Automation1 controller (i.e. if it has started and is running, it will remain running).
After calling this method, this <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object is no longer usable.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Start">
<summary>
Starts the Automation1 controller if it is not already running.
Connecting to the Automation1 controller will not change the running state of the controller so use this method to start the controller after connecting.
If the controller is already running this method does nothing.
You can check the state of the Automation1 controller with the <see cref="P:Aerotech.Automation1.DotNet.Controller.IsRunning"/> property.
</summary>
<remarks>
When the Automation1 controller begins to start, the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStarting"/> event will be raised.
When the Automation1 controller completes the start, the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStarted"/> event will be raised and you can begin any Automation1 controller interaction.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Stop">
<summary>
Stops the Automation1 controller if it is currently running. If the controller is already stopped this method does nothing.
You will remain connected to the Automation1 controller after you stop it, stopping the Automation1 controller does not change your connection.
</summary>
<remarks>
When the Automation1 controller stops, the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStopped"/> event will be raised.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.Reset">
<summary>
Resets the Automation1 controller, putting the Automation1 controller into a fresh state and performing any initialization.
The Automation1 controller will be unavailable while the reset is in progress.
</summary>
<remarks>
When the Automation1 controller begins to reset, the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerResetting"/> event will be raised notifying you that you cannot interact with the Automation1 controller.
When the Automation1 controller completes the reset, the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerReset"/> event will be raised and you can resume any Automation1 controller interaction.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.DownloadMcdToFile(System.String,System.Boolean,System.Boolean)">
<summary>
Downloads a machine controller definition (.mcd) file from the controller and saves it to the specified MDK file path.
A downloaded machine controller definition file can contain both controller configuration and controller files.
This file can be uploaded to any controller to copy this controller's configuration and files.
When using this method, at least one of the parameters shouldIncludeControllerFiles and shouldIncludeConfiguration must be true.
</summary>
<param name="mdkFilePathToMcd">The MDK file path to save the downloaded machine controller definition (.mcd) file at.</param>
<param name="shouldIncludeControllerFiles">Whether or not controller files should be included in the download.</param>
<param name="shouldIncludeConfiguration">Whether or not controller configuration should be included in the download.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.UploadMcdToController(System.String,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Uploads the machine controller definition (.mcd) file to the controller from the specified MDK file path.
When using this method, at least one of the parameters shouldIncludeControllerFiles and shouldIncludeConfiguration must be true.
Before calling this method, make sure there is nothing important on the controller that could be overwritten
or erased. Consider downloading a machine controller definition file as a backup before uploading a different
machine controller definition that may overwrite data.
</summary>
<param name="mdkFilePathToMcd">The MDK file path of the machine controller definition to upload.</param>
<param name="shouldIncludeControllerFiles">Whether or not controller files should be included in the upload.</param>
<param name="shouldIncludeConfiguration">Whether or not controller configuration should be included in the upload.</param>
<param name="eraseController">Whether or not the controller should be erased before uploading the new files.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.GetAxisSet">
<summary>
Gets the cached set of axes defined on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.GetTaskSet">
<summary>
Gets the cached set of tasks defined on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.GetConfiguredAxisSet">
<summary>
Gets the cached set of configured axes defined on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Controller.GetCompilerIncludeAndImportCache">
<summary>
Gets the cached set of auto-include and auto-import files on the controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerFileChange">
<summary>
Represents a change to a controller file on an Automation1 Controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFileChange.#ctor(System.String,Aerotech.Automation1.DotNet.ControllerFileChangeType)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerFileChange.FileName">
<summary>
Gets the file name of the controller file that changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerFileChange.HasChanged">
<summary>
Gets whether or not the configuration changed on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerFileChange.TypeOfChange">
<summary>
Gets how the controller file changed on the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFileChange.ConvertFrom(Aerotech.Automation1.Communication.FileSystemChangeKind)">
<summary>
Converts from <see cref="T:Aerotech.Automation1.Communication.FileSystemChangeKind"/> to <see cref="T:Aerotech.Automation1.DotNet.ConfigurationChangeType"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFileChange.CreateFrom(Aerotech.Automation1.Communication.UserFileChange)">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.ControllerFileChange"/> from <see cref="T:Aerotech.Automation1.Communication.UserFileChange"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerFileChangeType">
<summary>
Represents how a controller file changed on the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerFileChangeType.Unchanged">
<summary>
The controller file is unchanged.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerFileChangeType.Modified">
<summary>
The controller file was written to or newly created on the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerFileChangeType.Deleted">
<summary>
The controller file was deleted from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerFiles">
<summary>
A class to read and write controller files on the Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance
and then through the <see cref="P:Aerotech.Automation1.DotNet.Controller.Files"/> property.
</summary>
<remarks>
Controller files are a way for you to store any information, including AeroScript files, on the Automation1 controller. Controller files are not special and you can put
any number of files on the controller, organized in any way.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.#ctor(Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerFiles.Changed">
<summary>
Raised when a controller file(s) changed on the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.onChanged(Aerotech.Automation1.DotNet.ControllerFilesChangedEventArgs)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerFiles.Changed"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.GetFiles">
<summary>
Returns the names of all controller files (including their paths) on the Automation1 controller.
</summary>
<returns>An array of names of all controller files (including their paths), or an empty array if no files exist.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.ReadText(System.String)">
<summary>
Returns the contents of a controller file from the Automation1 controller as UTF-8 encoded text.
</summary>
<param name="controllerFileName">The file to read from.</param>
<returns>The UTF-8 encoded text file contents.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.ReadText(System.String,System.Text.Encoding)">
<summary>
Returns the contents of a controller file from the Automation1 controller as text with the specified encoding.
</summary>
<param name="controllerFileName">The file to read from.</param>
<param name="encoding">The text encoding to use.</param>
<returns>The text file contents encoded with <paramref name="encoding"/>.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.ReadBytes(System.String)">
<summary>
Returns the contents of a controller file from the Automation1 controller as raw bytes.
</summary>
<param name="controllerFileName">The file to read from.</param>
<returns>The byte array of file contents.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.Aerotech#Automation1#DotNet#IFileResolver#ReadBytesRelative(System.String,System.String,System.String@)">
<summary>
Returns the contents of a controller file from the Automation1 controller as raw bytes, which is specified as a relative path from a base file.
The full resolved path to the requested controller file is also returned (so you don't have to figure out what it is).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.ReadBytesRelative(System.String,System.String,System.String@)">
<summary>
Returns the contents of a controller file from the Automation1 controller as raw bytes, which is specified as a relative path from a base file.
The full resolved path to the requested controller file is also returned (so you don't have to figure out what it is).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.WriteText(System.String,System.String)">
<summary>
Creates a new controller file on the Automation1 controller and writes the specified contents to it as UTF-8 encoded text (byte order mark not included). This will overwrite any existing file with the same file name.
</summary>
<param name="controllerFileName">The file to write to.</param>
<param name="contents">The UTF-8 encoded text file contents to write (byte order mark not included).</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.WriteText(System.String,System.String,System.Text.Encoding)">
<summary>
Creates a new controller file on the Automation1 controller and writes the specified contents to it as text with the specified encoding. This will overwrite any existing file with the same file name.
</summary>
<param name="controllerFileName">The file to write to.</param>
<param name="contents">The text file contents to write encoded with <paramref name="encoding"/>.</param>
<param name="encoding">The text encoding to use.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.WriteBytes(System.String,System.Byte[])">
<summary>
Creates a new controller file on the Automation1 controller and writes the specified contents to it. This will overwrite any existing file with the same file name.
</summary>
<param name="controllerFileName">The file to write to.</param>
<param name="bytes">The byte array of files contents to write.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.Delete(System.String)">
<summary>
Deletes a controller file on the Automation1 controller.
</summary>
<param name="controllerFileName">The file to delete.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.RaiseChangedEvent(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.UserFileChange[])">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerFiles.Changed"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFiles.StandardizeFullFileName(System.String@)">
<summary>
Modifies the specified string that represents a controller file name, as a full path, to make sure it is consistent with how controller file names and paths are meant to be presented.
</summary>
<param name="controllerFileName">The controller file name string to change to make sure it is a user-facing path (this parameter _will be modified_ as it is passed by ref).</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.IFileResolver">
<summary>
Represents some sort of file system that can resolve files.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IFileResolver.ReadBytesRelative(System.String,System.String,System.String@)">
<summary>
Returns the contents of a file from a file system as raw bytes, which is specified as a relative path from a base file.
The full resolved path to the requested file is also returned (so you don't have to figure out what it is).
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MdkFiles">
<summary>
Represents a MDK file system to resolve MDK files.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MdkFiles.#ctor(System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MdkFiles.ReadBytesRelative(System.String,System.String,System.String@)">
<summary>
Returns the contents of an MDK file from the MDK file system as raw bytes, which is specified as a relative path from a base file.
The full resolved path to the requested MDK file is also returned (so you don't have to figure out what it is).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MdkFiles.StandardizeFullFileName(System.String@)">
<summary>
Modifies the specified string that represents an MDK file name, as a full path, to make sure it is consistent with how MDK file names and paths are meant to be presented.
</summary>
<param name="mdkFileName">The MDK file name string to change to make sure it is a user-facing path (this parameter _will be modified_ as it is passed by ref).</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerInformation">
<summary>
A class for general information about an Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.#ctor(Aerotech.Automation1.Communication.Requester,System.String,System.Int32,Aerotech.Automation1.DotNet.ControllerEventArgsCreator)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerInformation.Host">
<summary>
Gets the host name or host IP address that was used to connect to the Automation1 controller.
This plus the <see cref="P:Aerotech.Automation1.DotNet.ControllerInformation.Port"/> property identify the network endpoint of the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerInformation.Port">
<summary>
Gets the port number that was used to connect to the Automation1 controller.
This plus the <see cref="P:Aerotech.Automation1.DotNet.ControllerInformation.Host"/> property identify the network endpoint of the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerInformation.Name">
<summary>
Gets the name of the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerInformation.SerialNumber">
<summary>
Gets the serial number of the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerInformation.Version">
<summary>
Gets the version of the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerInformation.Type">
<summary>
Gets the type of Automation1 controller that you are connected to. Generally, YOU SHOULD NOT USE THIS
and instead check for specific capabilities (e.g. supported axes/tasks, requires HyperWire card, etc.).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerInformation.IsConnectionEncrypted">
<summary>
Gets whether or not the connection with the Automation1 Controller is encrypted.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerResetting">
<summary>
An event that is raised when the Automation1 controller begins to reset.
</summary>
<remarks>
See the <see cref="M:Aerotech.Automation1.DotNet.Controller.Reset"/> method.
</remarks>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerReset">
<summary>
An event that is raised when the Automation1 controller completes a reset.
</summary>
<remarks>
See the <see cref="M:Aerotech.Automation1.DotNet.Controller.Reset"/> method.
</remarks>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStarting">
<summary>
An event that is raised when the Automation1 controller is in the process of starting.
</summary>
<remarks>
See the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStarted">
<summary>
An event that is raised when the Automation1 controller has started.
</summary>
<remarks>
See the <see cref="M:Aerotech.Automation1.DotNet.Controller.Start"/> method.
</remarks>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStopped">
<summary>
An event that is raised when the Automation1 controller has stopped.
</summary>
<remarks>
See the <see cref="M:Aerotech.Automation1.DotNet.Controller.Stop"/> method.
</remarks>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.EnteringDeviceConfigurationMode">
<summary>
An event that is raised when the Automation1 controller is in the process of entering Device Configuration Mode.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.EnteredDeviceConfigurationMode">
<summary>
An event that is raised when the Automation1 controller has entered Device Configuration Mode.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.ExitedDeviceConfigurationMode">
<summary>
An event that is raised when the Automation1 controller has exited Device Configuration Mode.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStateChanged">
<summary>
An event that is raised when the Automation1 controller state changed.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseControllerResettingEvent(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerResetting"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseControllerResetEvent(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerReset"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseControllerStartingEvent(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStarting"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseControllerStartedEvent(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStarted"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseControllerStoppedEvent(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStopped"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseEnteringDeviceConfigurationMode(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.EnteringDeviceConfigurationMode"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseEnteredDeviceConfigurationMode(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.EnteredDeviceConfigurationMode"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseExitedDeviceConfigurationMode(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ExitedDeviceConfigurationMode"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerInformation.RaiseControllerStateChanged(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.Requests.Sequence.OnControllerStateChangedEvent)">
<summary>
Raises the <see cref="E:Aerotech.Automation1.DotNet.ControllerInformation.ControllerStateChanged"/> event.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IAxisCollectionProvider">
<summary>
An interface for an object that can provide the <see cref="T:Aerotech.Automation1.DotNet.AxisCollection"/> of a controller.
</summary>
<remarks>
CTRL-34682 and PR #1116:
This interface currently only exists to help address the circular dependency between <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Axes"/> and <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Devices"/>.
Each <see cref="T:Aerotech.Automation1.DotNet.Axis"/> in <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Axes"/> points to its parent <see cref="T:Aerotech.Automation1.DotNet.HyperWireDevice"/>.
Each <see cref="T:Aerotech.Automation1.DotNet.HyperWireDevice"/> in <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Devices"/> has a list of its child <see cref="T:Aerotech.Automation1.DotNet.Axis"/> objects.
The <see cref="T:Aerotech.Automation1.DotNet.AxisCollection"/> constructor requires a Lazy collection of devices, but the Lazy constructor for devices requires the axis collection (circular constructor
requirements). So this interface was introduced so the Lazy constructor for devices has a reference to "a thing to get an AxisCollection" rather than the AxisCollection
itself. The "thing to get an AxisCollection" is already constructed so can be passed in just fine but the AxisCollection hasn't been (and can't be) constructed yet.
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.IAxisCollectionProvider.Axes">
<summary>
Gets the collection of motion axes on the Automation1 controller, accessed by axis name or axis index.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerRuntime">
<summary>
A class to use an Automation1 controller's runtime components. This class is only available if the controller is running.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerRuntime.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ControllerFiles,Aerotech.Automation1.DotNet.RefreshableLazyManager,Aerotech.Automation1.DotNet.ICompiler,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet},System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache},Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.InternalAeroScriptCompiler},Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.MappedVariableCollection},Aerotech.Automation1.DotNet.ControllerEventArgsCreator)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.Axes">
<summary>
Gets the collection of motion axes on the Automation1 controller, accessed by axis name or axis index.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.Commands">
<summary>
Gets a way to execute commands on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.DataCollection">
<summary>
Gets a way to collect data on the Automation1 controller.
</summary>
<remarks>
Data collection is a feature to gather a set of data in a real-time, deterministic way. Data collection is different from status in that status
is not real-time and it is not time-series data. Status also has variable latency when retrieving.
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.Devices">
<summary>
Gets the HyperWire devices that are connected to the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.Parameters">
<summary>
Gets a way to get and set active controller parameters in use by the Automation1 controller.
</summary>
<remarks>
Changes to active controller parameters are not persisted and the active controller parameter values are lost after a controller reset.
To save controller parameters permanently use <see cref="P:Aerotech.Automation1.DotNet.Controller.Configuration"/>.
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.Status">
<summary>
Gets a way to retrieve status from the Automation1 controller.
</summary>
<remarks>
Retrieved status represents a moment in time. Status is different from data collection in that status is not real-time and it is
not time-series data. Status also has variable latency when retrieving.
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks">
<summary>
Gets the collection of controller tasks on the Automation1 controller, accessed by task name or task index.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerRuntime.Variables">
<summary>
Gets a way to get and set controller variables on the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollection">
<summary>
A class to collect data on an Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
<remarks>
Data collection is a feature to gather a set of data in a real-time, deterministic way. Data collection is different from status in that status
is not real-time and it is not time-series data. Status also has variable latency when retrieving.
To collect a single snapshot of data from the Automation1 controller, use <see cref="M:Aerotech.Automation1.DotNet.DataCollection.CollectSnapshot(Aerotech.Automation1.DotNet.DataCollectionConfiguration)"/>.
To collect data from the Automation1 controller continuously, see <see cref="M:Aerotech.Automation1.DotNet.DataCollection.CollectContinuous(Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.Action{Aerotech.Automation1.DotNet.DataCollectionResults})"/>.
To handle starting data collection, stopping data collection, and collecting data from the Automation1 controller on your own, use
<see cref="M:Aerotech.Automation1.DotNet.DataCollection.Start(Aerotech.Automation1.DotNet.DataCollectionMode,Aerotech.Automation1.DotNet.DataCollectionConfiguration)"/>, <see cref="M:Aerotech.Automation1.DotNet.DataCollection.Stop"/>, and <see cref="M:Aerotech.Automation1.DotNet.DataCollection.GetResults(Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.Int32)"/>).
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet},Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.MappedVariableCollection})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollection.Status">
<summary>
Gets the current status of any data collection (both <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Snapshot"/> and <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Continuous"/>).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.CollectSnapshot(Aerotech.Automation1.DotNet.DataCollectionConfiguration)">
<summary>
Runs data collection on the Automation1 controller for a single snapshot of data and then returns the results, blocking until all of the points are collected or until
data collection is stopped.
</summary>
<remarks>
If data collection completes normally, this method returns all <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.NumberOfPointsToCollect"/>.
If data collection was stopped prematurely, this method returns the points collected before being stopped.
</remarks>
<param name="dataCollectionConfiguration">What data to collect and at what period.</param>
<returns>Returns a <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/> object which contains the collected data of the snapshot data collection.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.CollectSnapshot(Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.EventHandler{System.ComponentModel.ProgressChangedEventArgs})">
<summary>
Runs data collection on the Automation1 controller for a single snapshot of data and then returns the results, blocking until all of the points are collected or until
data collection is stopped.
</summary>
<remarks>
If data collection completes normally, this method returns all <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.NumberOfPointsToCollect"/>.
If data collection was stopped prematurely, this method returns the points collected before being stopped.
</remarks>
<param name="dataCollectionConfiguration">What data to collect and at what period.</param>
<param name="progressChanged">The event to raise when data collection progress changes.</param>
<returns>Returns a <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/> object which contains the collected data of the snapshot data collection.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.CollectContinuous(Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.Action{Aerotech.Automation1.DotNet.DataCollectionResults})">
<summary>
Runs continuous data collection on the Automation1 controller which will collect data indefinitely and will periodically give you results via <paramref name="newResultsAction"/>.
This method does not return anything, instead individual chunks of continuously collected data will be given to you via <paramref name="newResultsAction"/>.
The number of points given to you in each chunk is defined by <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.NumberOfPointsToCollect"/>.
This will block until you explicitly stop data collection by calling <see cref="M:Aerotech.Automation1.DotNet.DataCollection.Stop"/>. You can call <see cref="M:Aerotech.Automation1.DotNet.DataCollection.Stop"/> from a different thread
or from within the <paramref name="newResultsAction"/> delegate.
</summary>
<param name="dataCollectionConfiguration">What data to collect and at what period.</param>
<param name="newResultsAction">The delegate that will be called when a new chunk of continuously collected data is available.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.ApplyConfiguration(Aerotech.Automation1.DotNet.DataCollectionConfiguration)">
<summary>
Applies data collection configuration to the Automation1 controller without starting data collection.
Applying data collection configuration is mainly used in conjunction with the "AppDataCollect" AeroScript commands.
</summary>
<param name="dataCollectionConfiguration">The data collection configuration to apply to the controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.Start(Aerotech.Automation1.DotNet.DataCollectionMode,Aerotech.Automation1.DotNet.DataCollectionConfiguration)">
<summary>
Starts data collection on the Automation1 controller with the specified mode and using the specified <see cref="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration"/>.
This method waits for data collection to start but it does not wait for data collection to complete. You can stop data collection by calling <see cref="M:Aerotech.Automation1.DotNet.DataCollection.Stop"/>
and you can get the collected data by calling <see cref="M:Aerotech.Automation1.DotNet.DataCollection.GetResults(Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.Int32)"/>. This method gives you the most control but prefer to use
<see cref="M:Aerotech.Automation1.DotNet.DataCollection.CollectSnapshot(Aerotech.Automation1.DotNet.DataCollectionConfiguration)"/> or <see cref="M:Aerotech.Automation1.DotNet.DataCollection.CollectContinuous(Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.Action{Aerotech.Automation1.DotNet.DataCollectionResults})"/> because they are easier to use.
</summary>
<param name="dataCollectionMode">The data collection mode to start.</param>
<param name="dataCollectionConfiguration">What data to collect and at what period.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.GetResults(Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.Int32)">
<summary>
Returns collected results from data collection. This method can return data from a completed data collection or from data collection that is still
occurring. This method waits for data collection to collect the specified number of points, blocking until they are available, and then returns them.
This method throws an exception if the specified number of points will never be available (e.g. if data collection was stopped before
the requested number of points was collected).
</summary>
<param name="dataCollectionConfiguration">The <see cref="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration"/> that was used to start data collection.</param>
<param name="numberOfPointsToGet">The number of points to get and return.</param>
<returns>Returns a <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/> object which contains the collected data up to <paramref name="numberOfPointsToGet"/>.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.Stop">
<summary>
Stops all data collection on the Automation1 controller (<see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Snapshot"/> and <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Continuous"/>), regardless of who started it.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.ConvertUnits(Aerotech.Automation1.DotNet.ControllerUnits,Aerotech.Automation1.DotNet.DataCollectionResults)">
<summary>
Converts the data within a <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/> object to use different units. How the points in a <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/>
object are converted is dependent on the Automation1 controller's configured parameters.
See <see cref="T:Aerotech.Automation1.DotNet.ControllerDistanceUnit"/> for how each unit type is dependent on configured parameters.
See <see cref="T:Aerotech.Automation1.DotNet.ControllerConfiguration"/> to see how to configure parameters on the Automation1 controller.
</summary>
<param name="unitsToConvertTo">The units to convert to.</param>
<param name="resultsToConvert">The results to convert.</param>
<returns>Returns a new <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/> object which contains data that has been converted to use a different set of units.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.GetTriggerTypeFrom(Aerotech.Automation1.DotNet.DataCollectionMode)">
<summary>
Converts a public <see cref="T:Aerotech.Automation1.DotNet.DataCollectionMode"/> into a internal <see cref="T:Aerotech.Automation1.DotNet.DataCollectionTriggerType"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.GetConfigurationFrom(Aerotech.Automation1.DotNet.AxisSet,Aerotech.Automation1.DotNet.TaskSet,Aerotech.Automation1.DotNet.MappedVariableCollection,Aerotech.Automation1.DotNet.DataCollectionConfiguration,System.Collections.Generic.Dictionary{System.Int32,Aerotech.Automation1.DotNet.MappedVariable}@)">
<summary>
Creates a request layer <see cref="T:Aerotech.Automation1.Communication.DataCollectionConfiguration"/> object which can be sent to the SMC, from a public <see cref="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration"/> object which is the .NET representation of
data collection configuration.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollection.GetResultsFrom(Aerotech.Automation1.DotNet.AxisSet,Aerotech.Automation1.DotNet.TaskSet,System.Int32,Aerotech.Automation1.Communication.DataCollectionConfiguration,System.Double[],System.Collections.Generic.Dictionary{System.Int32,Aerotech.Automation1.DotNet.MappedVariable})">
<summary>
Creates the public <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/> object from the internal request layer data collection response and the corresponding request.
The <paramref name="rawData"/> parameter is all of the points for all signals/records in one linear list, where the first point of each signal appears sequentially, then
the second point of each signal, etc.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionMode">
<summary>
Represents the mode that data collection will use when collecting data from an Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionMode.Snapshot">
<summary>
Data collection will start, collect a specified number of data points at a specified period, then stop.
Data collection can be stopped prematurely by calling <see cref="M:Aerotech.Automation1.DotNet.DataCollection.Stop"/>.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionMode.Continuous">
<summary>
Data collection will start and collect data points forever at a specified period. Continuous data collection
can be stopped by calling <see cref="M:Aerotech.Automation1.DotNet.DataCollection.Stop"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionFrequency">
<summary>
Represents predefined data collection frequencies which correlate to 1 millisecond or sub-millisecond data collect periods.
Data collection frequency defines how many points will be collection in one second.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFrequency.Undefined">
<summary>
A data collection frequency was not specified or a data collection period was specified that does not
correlate to one of predefined data collection frequencies.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFrequency.Frequency1kHz">
<summary>
Represents a data collection frequency of 1 kilohertz or a data collection period of 1 millisecond.
1000 points will be collected in one second.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFrequency.Frequency10kHz">
<summary>
Represents a data collection frequency of 10 kilohertz or a data collection period of 0.1 milliseconds.
10,000 points will be collected in one second.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFrequency.Frequency20kHz">
<summary>
Represents a data collection frequency of 20 kilohertz or a data collection period of 0.05 milliseconds.
20,000 points will be collected in one second.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFrequency.Frequency100kHz">
<summary>
Represents a data collection frequency of 100 kilohertz or a data collection period of 0.01 milliseconds.
100,000 points will be collected in one second.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFrequency.Frequency200kHz">
<summary>
Represents a data collection frequency of 200 kilohertz or a data collection period of 0.005 milliseconds.
200,000 points will be collected in one second.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFrequency.Frequency5kHz">
<summary>
Represents a data collection frequency of 5 kilohertz or a data collection period of 0.2 milliseconds.
5000 points will be collected in one second.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration">
<summary>
Represents a configuration of data signals to collect from an Automation1 controller using the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.DataCollection"/> property.
When constructing an instance of this class you specify the number of points to collect and either a data collection period or a data collection frequency.
Add data signals to collect using the <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.System"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Task"/>, and <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.IndustrialEthernet"/> properties.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionConfiguration.frequencyToPeriod">
<summary>
A mapping of period (ms) to frequency (kHz) that can be used for data collection.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionConfiguration.#ctor(System.Int32,System.Double)">
<summary>
Constructs a new, empty <see cref="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration"/> based on a data collection period. Add data signals to collect using
the <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.System"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Task"/>, and <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.IndustrialEthernet"/> properties.
</summary>
<param name="numberOfPointsToCollect">The number of points to collect for each configured data signal.</param>
<param name="period">The time in milliseconds between each collected point.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionConfiguration.#ctor(System.Int32,Aerotech.Automation1.DotNet.DataCollectionFrequency)">
<summary>
Constructs a new, empty <see cref="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration"/> based on a data collection frequency. Add data signals to collect using
the <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.System"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Task"/>, and <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.IndustrialEthernet"/> properties.
</summary>
<param name="numberOfPointsToCollect">The number of points to collect for each configured data signal.</param>
<param name="dataCollectionFrequency">The frequency of data collection (the number of points to collect in one second).</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.DefaultDataSignalArgument">
<summary>
Gets the default value of an argument for a data signal if you do not specify one (the default is 0).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.NumberOfPointsToCollect">
<summary>
Gets the number of points to collect from an Automation1 controller for each configured data signal.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Period">
<summary>
Gets the data collection period which is the time in milliseconds between each collected point for each configured data signal.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Axis">
<summary>
Gets the configuration of axis based data signals to collect from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Task">
<summary>
Gets the configuration of task based data signals to collect from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.System">
<summary>
Gets the configuration of system based data signals to collect from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.IndustrialEthernet">
<summary>
Gets the configuration of Industrial Ethernet mappings to collect from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Count">
<summary>
Gets the total number of all data signals added to this configuration to be collected from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionConfiguration.AddFrom(Aerotech.Automation1.DotNet.DataCollectionConfiguration)">
<summary>
Adds all configured data signals from another <see cref="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration"/> to this configuration.
</summary>
<remarks>This will update the <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Task"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.System"/>, and <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.IndustrialEthernet"/> configurations.</remarks>
<param name="otherDataCollectionConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.DataCollectionConfiguration"/> to add data signals from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionConfiguration.Clear">
<summary>
Removes all data signals from this configuration so they will not be collected from an Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration">
<summary>
Represents a collection of configured axis based data signals to collect from an Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what axis based data signal to collect.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Configuration">
<summary>
Gets the internal collect of user configured data signals.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Count">
<summary>
Gets the number of axis based data signals added to this configuration to be collected from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.AddFrom(Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration)">
<summary>
Adds all configured axis based data signals from another <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection"/> to this configuration.
</summary>
<param name="otherAxisDataCollectionConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection"/> to add data signals from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.AxisDataSignal,System.Int32)">
<summary>
Adds an axis based data signal to be collected on a specific axis on the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisIndex">The axis to collect the data signal on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.AxisDataSignal,System.Int32,System.Int32)">
<summary>
Adds an axis based data signal to be collected on a specific axis on the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisIndex">The axis to collect the data signal on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.AxisDataSignal,System.String)">
<summary>
Adds an axis based data signal to be collected on a specific axis on the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisName">The axis to collect the data signal on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.AxisDataSignal,System.String,System.Int32)">
<summary>
Adds an axis based data signal to be collected on a specific axis on the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisName">The axis to collect the data signal on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.AxisDataSignal,System.Int32)">
<summary>
Removes an axis based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisIndex">The axis that the data signal was to be collected on.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.AxisDataSignal,System.Int32,System.Int32)">
<summary>
Removes an axis based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisIndex">The axis that the data signal was to be collected on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.AxisDataSignal,System.String)">
<summary>
Removes an axis based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisName">The axis that the data signal was to be collected on.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.AxisDataSignal,System.String,System.Int32)">
<summary>
Removes an axis based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal to collect.</param>
<param name="axisName">The axis that the data signal was to be collected on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionConfiguration.Clear">
<summary>
Removes all axis based data signals from this configuration so they will not be collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration">
<summary>
Represents a collection of configured task based data signals to collect from an Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what task based data signal to collect.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Configuration">
<summary>
Gets the internal collect of user configured data signals.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Count">
<summary>
Gets the number of task based data signals added to this configuration to be collected from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.AddFrom(Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration)">
<summary>
Adds all configured task based data signals from another <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration"/> to this configuration.
</summary>
<param name="otherTaskDataCollectionConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration"/> to add data signals from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.TaskDataSignal,System.Int32)">
<summary>
Adds an task based data signal to be collected on a specific task on the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskIndex">The task to collect the data signal on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.TaskDataSignal,System.Int32,System.Int32)">
<summary>
Adds an task based data signal to be collected on a specific task on the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskIndex">The task to collect the data signal on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.TaskDataSignal,System.String)">
<summary>
Adds an task based data signal to be collected on a specific task on the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskName">The task to collect the data signal on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.TaskDataSignal,System.String,System.Int32)">
<summary>
Adds an task based data signal to be collected on a specific task on the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskName">The task to collect the data signal on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.TaskDataSignal,System.Int32)">
<summary>
Removes an task based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskIndex">The task that the data signal was to be collected on.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.TaskDataSignal,System.Int32,System.Int32)">
<summary>
Removes an task based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskIndex">The task that the data signal was to be collected on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.TaskDataSignal,System.String)">
<summary>
Removes an task based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskName">The task that the data signal was to be collected on.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.TaskDataSignal,System.String,System.Int32)">
<summary>
Removes an task based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal to collect.</param>
<param name="taskName">The task that the data signal was to be collected on.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionConfiguration.Clear">
<summary>
Removes all task based data signals from this configuration so they will not be collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration">
<summary>
Represents a collection of configured system based data signals to collect from an Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what system based data signal to collect.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.Configuration">
<summary>
Gets the internal collect of user configured data signals.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.Count">
<summary>
Gets the number of system based data signals added to this configuration to be collected from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.AddFrom(Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration)">
<summary>
Adds all configured system based data signals from another <see cref="T:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration"/> to this configuration.
</summary>
<param name="otherSystemDataCollectionConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration"/> to add data signals from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.SystemDataSignal)">
<summary>
Adds a system based data signal to be collected on the Automation1 controller.
</summary>
<param name="systemDataSignal">The system based data signal to collect.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.Add(Aerotech.Automation1.DotNet.SystemDataSignal,System.Int32)">
<summary>
Adds a system based data signal to be collected on the Automation1 controller.
</summary>
<param name="systemDataSignal">The system based data signal to collect.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.SystemDataSignal)">
<summary>
Removes a system based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="systemDataSignal">The system based data signal to collect.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.Remove(Aerotech.Automation1.DotNet.SystemDataSignal,System.Int32)">
<summary>
Removes a system based data signal from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="systemDataSignal">The system based data signal to collect.</param>
<param name="argument">The argument for the data signal, if unsure don't use this overload.</param>
<returns>true if the data signal was found and removed; false if the data signal was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionConfiguration.Clear">
<summary>
Removes all system based data signals from this configuration so they will not be collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration">
<summary>
Represents a collection of configured Industrial Ethernet mappings to collect from an Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what Industrial Ethernet mappings to collect.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.Configuration">
<summary>
Gets the internal collect of user configured data signals.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.Count">
<summary>
Gets the number of Industrial Ethernet mappings added to this configuration to be collected from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.AddFrom(Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration)">
<summary>
Adds all configured Industrial Ethernet mappings from another <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration"/> to this configuration.
</summary>
<param name="otherIndustrialEthernetDataCollectionConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration"/> to add Industrial Ethernet mappings from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.Add(System.String)">
<summary>
Adds an Industrial Ethernet mapping to be collected on the Automation1 controller.
</summary>
<param name="industrialEthernetMappingName">The Industrial Ethernet mapping to collect.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.Add(System.String,System.Int32)">
<summary>
Adds an index of an Industrial Ethernet mapping array to be collected on the Automation1 controller.
</summary>
<param name="industrialEthernetMappingArrayName">The Industrial Ethernet mapping array to collect.</param>
<param name="industrialEthernetMappingArrayIndex">The index of the Industrial Ethernet mapping array to collect.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.Remove(System.String)">
<summary>
Removes an Industrial Ethernet mapping from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingName">The Industrial Ethernet mapping to remove.</param>
<returns>True if the Industrial Ethernet mapping was found and removed; false if it was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.Remove(System.String,System.Int32)">
<summary>
Removes an index of an Industrial Ethernet mapping array from this configuration so it will not be collected from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingArrayName">The Industrial Ethernet mapping array to remove.</param>
<param name="industrialEthernetMappingArrayIndex">The index of the Industrial Ethernet mapping array to remove.</param>
<returns>True if the index of the Industrial Ethernet mapping array was found and removed; false if it was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionConfiguration.Clear">
<summary>
Removes all Industrial Ethernet mappings from this configuration so they will not be collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionResult">
<summary>
Represents the result for a single data signal collected from an Automation1 controller.
This contains the array of points collected for the data signal.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionResult.#ctor(System.Int32,System.Double[],System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResult.DataSignalName">
<summary>
Gets the string name for the data signal that was collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResult.NumberOfCollectedPoints">
<summary>
Gets the number of points that data collection has collected this the data signal.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResult.Points">
<summary>
Gets the array of collected points for the data signal.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResult.Argument">
<summary>
Gets the optional argument that was used for the collected data signal result.
</summary>
<remarks>
If you did not specify an argument then this will be <see cref="P:Aerotech.Automation1.DotNet.DataCollectionConfiguration.DefaultDataSignalArgument"/>.
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResult.Units">
<summary>
Gets the string name of the units for the data signal. To convert units of this <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResult"/> object
see <see cref="M:Aerotech.Automation1.DotNet.DataCollection.ConvertUnits(Aerotech.Automation1.DotNet.ControllerUnits,Aerotech.Automation1.DotNet.DataCollectionResults)"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult">
<summary>
Represents the result for a single axis based data signal collected from an Automation1 controller.
This contains the array of points collected for the axis based data signal.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionResult.#ctor(Aerotech.Automation1.DotNet.AxisDataSignal,System.Int32,System.Double[],System.String,System.Int32,System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResult.AxisName">
<summary>
Gets the name of the axis that this data signal was collected on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResult.AxisIndex">
<summary>
Gets the index of the axis that this data signal was collected on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResult.AxisDataSignal">
<summary>
Gets the axis based data signal that was collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResult.DataSignalName">
<summary>
Gets the string name for the axis based data signal that was collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult">
<summary>
Represents the result for a single task based data signal collected from an Automation1 controller.
This contains the array of points collected for the task based data signal.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionResult.#ctor(Aerotech.Automation1.DotNet.TaskDataSignal,System.Int32,System.Double[],System.String,System.Int32,System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResult.TaskName">
<summary>
Gets the name of the task that this data signal was collected on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResult.TaskIndex">
<summary>
Gets the index of the task that this data signal was collected on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResult.TaskDataSignal">
<summary>
Gets the task based data signal that was collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResult.DataSignalName">
<summary>
Gets the string name for the task based data signal that was collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemDataCollectionResult">
<summary>
Represents the result for a single system based data signal collected from an Automation1 controller.
This contains the array of points collected for the system based data signal.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionResult.#ctor(Aerotech.Automation1.DotNet.SystemDataSignal,System.Int32,System.Double[],System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemDataCollectionResult.SystemDataSignal">
<summary>
Gets the system based data signal that was collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemDataCollectionResult.DataSignalName">
<summary>
Gets the string name for the system based data signal that was collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult">
<summary>
Represents the result for a single Industrial Ethernet mapping collected from an Automation1 controller.
This contains the array of points collected for the Industrial Ethernet mapping.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult.#ctor(System.String,System.Int32,System.Int32,System.Double[],System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult.IndustrialEthernetMappingName">
<summary>
Gets the Industrial Ethernet mapping that was collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult.IndustrialEthernetMappingArrayIndex">
<summary>
Gets the index of the Industrial Ethernet mapping array that was collected from the Automation1 controller.
If the Industrial Ethernet mapping is not an array, this will return -1.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult.DataSignalName">
<summary>
Gets the Industrial Ethernet mapping that was collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionResults">
<summary>
Represents results for data signals collected from an Automation1 controller. To collect data from an Automation1 controller see <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.DataCollection"/>
which can be accessed via the <see cref="P:Aerotech.Automation1.DotNet.Controller.Runtime"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionResults.#ctor(System.Int32,Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection,Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection,Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection,Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection,Aerotech.Automation1.DotNet.ControllerUnits)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.NumberOfCollectedPoints">
<summary>
Gets the number of points that data collection has collected for all configured data signals.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.Axis">
<summary>
Gets the collection of results for axis based data collection from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.Task">
<summary>
Gets the collection of results for task based data collection from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.System">
<summary>
Gets the collection of results for system based data collection from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.IndustrialEthernet">
<summary>
Gets the collection of results for Industrial Ethernet mapping based data collection from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.Units">
<summary>
Gets the units of the collected data signals. To convert the units of this <see cref="T:Aerotech.Automation1.DotNet.DataCollectionResults"/> object
use <see cref="M:Aerotech.Automation1.DotNet.DataCollection.ConvertUnits(Aerotech.Automation1.DotNet.ControllerUnits,Aerotech.Automation1.DotNet.DataCollectionResults)"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.AllResults">
<summary>
Gets a sequence of all data signals collected from the Automation1 controller (the combination of <see cref="P:Aerotech.Automation1.DotNet.DataCollectionResults.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.DataCollectionResults.Task"/>, and <see cref="P:Aerotech.Automation1.DotNet.DataCollectionResults.System"/>).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionResults.Count">
<summary>
Gets the total number of data signals collected from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection">
<summary>
Represents the collection of results for axis based data signals collected from an Automation1 controller.
</summary>
<remarks>
Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> for each axis based data signal collected.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.#ctor(Aerotech.Automation1.DotNet.AxisSet,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.AxisDataCollectionResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.Count">
<summary>
Gets the number of axis based data signals collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.AxisDataSignal,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> that represents the result for a single axis based data signal
collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal that was collected.</param>
<param name="axisIndex">The axis the data signal was collected on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> for the specified axis based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.AxisDataSignal,System.Int32,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> that represents the result for a single axis based data signal
collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal that was collected.</param>
<param name="axisIndex">The axis the data signal was collected on.</param>
<param name="argument">The argument used for the collected data signal, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> for the specified axis based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.AxisDataSignal,System.String)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> that represents the result for a single axis based data signal
collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal that was collected.</param>
<param name="axisName">The axis the data signal was collected on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> for the specified axis based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.AxisDataSignal,System.String,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> that represents the result for a single axis based data signal
collected from the Automation1 controller.
</summary>
<param name="axisDataSignal">The axis based data signal that was collected.</param>
<param name="axisName">The axis the data signal was collected on.</param>
<param name="argument">The argument used for the collected data signal, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> for the specified axis based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisDataCollectionResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collect of <see cref="T:Aerotech.Automation1.DotNet.AxisDataCollectionResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection">
<summary>
Represents the collection of results for task based data signals collected from an Automation1 controller.
</summary>
<remarks>
Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> for each task based data signal collected.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.#ctor(Aerotech.Automation1.DotNet.TaskSet,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.TaskDataCollectionResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.Count">
<summary>
Gets the number of task based data signals collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.TaskDataSignal,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> that represents the result for a single task based data signal
collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal that was collected.</param>
<param name="taskIndex">The task the data signal was collected on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> for the specified task based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.TaskDataSignal,System.Int32,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> that represents the result for a single task based data signal
collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal that was collected.</param>
<param name="taskIndex">The task the data signal was collected on.</param>
<param name="argument">The argument used for the collected data signal, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> for the specified task based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.TaskDataSignal,System.String)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> that represents the result for a single task based data signal
collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal that was collected.</param>
<param name="taskName">The task the data signal was collected on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> for the specified task based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.TaskDataSignal,System.String,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> that represents the result for a single task based data signal
collected from the Automation1 controller.
</summary>
<param name="taskDataSignal">The task based data signal that was collected.</param>
<param name="taskName">The task the data signal was collected on.</param>
<param name="argument">The argument used for the collected data signal, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> for the specified task based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskDataCollectionResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collect of <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection">
<summary>
Represents the collection of results for system based data signals collected from an Automation1 controller.
</summary>
<remarks>
Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.SystemDataCollectionResult"/> for each system based data signal collected.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection.#ctor(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.SystemDataCollectionResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection.Count">
<summary>
Gets the number of system based data signals collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.SystemDataSignal)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.SystemDataCollectionResult"/> that represents the result for a single system based data signal
collected from the Automation1 controller.
</summary>
<param name="systemDataSignal">The system based data signal that was collected.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.SystemDataCollectionResult"/> for the specified system based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection.Item(Aerotech.Automation1.DotNet.SystemDataSignal,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.SystemDataCollectionResult"/> that represents the result for a single system based data signal
collected from the Automation1 controller.
</summary>
<param name="systemDataSignal">The system based data signal that was collected.</param>
<param name="argument">The argument used for the collected data signal, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.SystemDataCollectionResult"/> for the specified system based data signal; or null if the data signal was not configured to be collected.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemDataCollectionResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collect of <see cref="T:Aerotech.Automation1.DotNet.TaskDataCollectionResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection">
<summary>
Represents the collection of results for Industrial Ethernet mappings collected from an Automation1 controller.
</summary>
<remarks>
Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> for each Industrial Ethernet mapping collected.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection.#ctor(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection.Count">
<summary>
Gets the number of Industrial Ethernet mappings collected from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection.Item(System.String)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> that represents the result for a single Industrial Ethernet mapping
collected from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingName">The Industrial Ethernet mapping that was collected.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> for the specified Industrial Ethernet mapping; or null if the Industrial Ethernet mapping
was not configured to be collected.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection.Item(System.String,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> that represents the result for a single index of an Industrial Ethernet mapping array
collected from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingArrayName">The Industrial Ethernet mapping array that was collected.</param>
<param name="industrialEthernetMappingArrayIndex">The index of the Industrial Ethernet mapping array that was collected.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> for the specified Industrial Ethernet mapping; or null if the Industrial Ethernet mapping
was not configured to be collected.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collect of <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetDataCollectionResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionStatus">
<summary>
Represents the status of any data collection on an Automation1 controller (both <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Snapshot"/> and <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Continuous"/>).
Instances of this class represent a moment in time for data collection.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.DataCollection"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionStatus.#ctor(System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.NumberOfPointsToCollect">
<summary>
Gets the number of points that data collection will collect. In <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Snapshot"/> this number
is the total number of points to collect. In <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Continuous"/> this number is the size of
each chunk of continuously collected points.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.NumberOfCollectedPoints">
<summary>
Gets the number of points that data collection has collected for all configured data signals.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.NumberOfRetrievedPoints">
<summary>
Gets the number of points that data collection has collected and retrieved. At certain data collection periods <see cref="P:Aerotech.Automation1.DotNet.DataCollectionStatus.NumberOfRetrievedPoints"/>
can be lower than <see cref="P:Aerotech.Automation1.DotNet.DataCollectionStatus.NumberOfCollectedPoints"/> because the points haven't been retrieved from the HyperWire devices yet. Generally you do not have
to care about the difference and <see cref="P:Aerotech.Automation1.DotNet.DataCollectionStatus.NumberOfCollectedPoints"/> is what you should use.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.IsCollecting">
<summary>
Gets whether or not data collection is currently collecting points.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.HasOverflowed">
<summary>
Gets whether or not the internal data collection buffer has overflowed and stopped with an error. This can happen in <see cref="F:Aerotech.Automation1.DotNet.DataCollectionMode.Continuous"/>
if points are not retrieved fast enough and a single chunk of data exceeds <see cref="P:Aerotech.Automation1.DotNet.DataCollectionStatus.NumberOfPointsToCollect"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.Mode">
<summary>
Gets the current mode of data collection.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.AppDataCollectTriggerId">
<summary>
Gets the ID used by one of the "AppDataCollect" AeroScript commands, used to denote who should handle the data collection.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionStatus.IsAppDataCollectCommand">
<summary>
Gets whether or not data collection was triggered by one of the "AppDataCollect" AeroScript commands.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataSignalHelper">
<summary>
Helpers for dealing with data signal.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataSignalHelper.GetDerivativeLevelForDataSignal(System.Int32)">
<summary>
Looks up and returns the derivative level (none, position, velocity, acceleration, jerk) of a data signal ID.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataSignalHelper.GetContextForDataSignal(System.Int32)">
<summary>
Looks up and returns the context (system, axis, task) of a data signal ID.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisDataSignal">
<summary>
Represents an axis based data collection signal that can be retrieved from the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionFeedback">
<summary>This item returns the position feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommand">
<summary>This item returns the position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionError">
<summary>This item returns the position error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityFeedback">
<summary>This item returns the velocity feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityCommand">
<summary>This item returns the commanded velocity of the axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityError">
<summary>This item returns the velocity error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationCommand">
<summary>This item returns the value of the acceleration command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CurrentFeedback">
<summary>This item returns the current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CurrentCommand">
<summary>This item returns the current command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CurrentError">
<summary>This item returns the current error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogInput0">
<summary>This item returns the value of analog input 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogInput1">
<summary>This item returns the value of analog input 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandRaw">
<summary>This item returns the raw position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityCommandRaw">
<summary>This item returns the raw velocity command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryFeedback">
<summary>This item returns the feedback in encoder counts for the device connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DigitalInput">
<summary>This item returns the value of the 32-bit digital input word that is read from the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DigitalOutput">
<summary>This item returns the value of the 32-bit digital output word that is read from the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.WorkOffsetValue">
<summary>This item returns the value of the active work offset that is applied to the axis position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PhaseACurrentFeedback">
<summary>This item returns the phase A current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PhaseBCurrentFeedback">
<summary>This item returns the phase B current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.EncoderSine">
<summary>This item returns the encoder sine value in A/D counts after correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.EncoderCosine">
<summary>This item returns the encoder cosine value in A/D counts after correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogInput2">
<summary>This item returns the value of analog input 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogInput3">
<summary>This item returns the value of analog input 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FrequencyResponseBefore">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FrequencyResponseAfter">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogOutput0">
<summary>This item returns the value of analog output 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogOutput1">
<summary>This item returns the value of analog output 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogOutput2">
<summary>This item returns the value of analog output 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogOutput3">
<summary>This item returns the value of analog output 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryInt32">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryFloat">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryDouble">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoStatus">
<summary>This item returns the value of the PSO Status word. The data type of this item is the PsoStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerDebug">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CoordinatedPositionTarget">
<summary>This item returns the coordinated target position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveStatus">
<summary>This item returns the value of the Drive Status word. The data type of this item is the DriveStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AxisStatus">
<summary>This item returns the value of the Axis Status word. The data type of this item is the AxisStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AxisFault">
<summary>This item returns the value of the Axis Fault word. The data type of this item is the AxisFault enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationCommandRaw">
<summary>This item returns the value of the raw acceleration command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCalibrationAll">
<summary>This item returns the 1D + 2D position calibration contribution with the backlash contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionFeedbackRollover">
<summary>This item returns the position feedback with rollover applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandRollover">
<summary>This item returns the position command with rollover applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityFeedbackAverage">
<summary>This item returns the average velocity feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CurrentFeedbackAverage">
<summary>This item returns the average current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AxisParameter">
<summary>This item returns the value of an axis parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.Backlash">
<summary>This item returns the backlash contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.HomeState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCalibration2D">
<summary>This item returns the 2D position calibration contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.NormalcyDebug">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.TotalMoveTime">
<summary>This item returns the total move time of the last move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionFeedbackDrive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.JerkCommandRaw">
<summary>This item returns the raw jerk command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ProgramPositionCommand">
<summary>This item returns the program position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionOffset">
<summary>This item returns the value of the position offset.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandRawBackwardsDiff">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityCommandRawBackwardsDiffDelta">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandDrive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveStatusActual">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.WorkOffsetIndex">
<summary>This item returns the one-based index of the active work offset for this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ProgramPositionFeedback">
<summary>This item returns the program position feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.JogTrajectoryStatus">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PingTest">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationTime">
<summary>This item returns the value of the axis acceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DecelerationTime">
<summary>This item returns the value of the axis deceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationRate">
<summary>This item returns the value of the axis acceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DecelerationRate">
<summary>This item returns the value of the axis deceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationType">
<summary>This item returns the axis acceleration type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DecelerationType">
<summary>This item returns the axis deceleration type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationMode">
<summary>This item returns the axis acceleration mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DecelerationMode">
<summary>This item returns the axis deceleration mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ProgramPosition">
<summary>This item returns the program position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryInt16">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryInt8">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SpeedTarget">
<summary>This item returns the target speed for an axis in a RAPID move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandPacket">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveSmcMotionState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandRawCal">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityCommandRawCal">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.VelocityCommandDrive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationCommandDrive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GalvoLaserOutputRaw">
<summary>This item returns the raw value of the galvo laser output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketInt32">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketInt16">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketInt8">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketDouble">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketFloat">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfaceCommandCode">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationFeedback">
<summary>This item returns the value of the acceleration feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationCommandRawCal">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCalibrationAllDrive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.BacklashTarget">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMotionRate">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMotionDelay">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CalibrationAdjustmentValue">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoRounding">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoLoopFeedforwardControlEffortRaw">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketInfoBitValue">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationError">
<summary>This item returns the value of the acceleration error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SuppressedFaults">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketStreamingData">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandRawUnfiltered">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.TransitionOffsetErrors">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoCounter0">
<summary>This item returns the value of PSO counter 0 in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoCounter1">
<summary>This item returns the value of PSO counter 1 in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoCounter2">
<summary>This item returns the value of PSO counter 2 in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow0">
<summary>This item returns the value of the PSO window 0 counter in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow1">
<summary>This item returns the value of the PSO window 1 counter in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveDataCaptureSamples">
<summary>This item returns the number of drive data capture samples that have been acquired.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandGalvo">
<summary>This item returns the position command of the galvo scanner. This value represents the location of the scanner within its field-of-view, including calibration, but does not include marking-on-the-fly.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FreezeVelocityCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FreezeVelocityFeedback">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.InternalPositionOffsets">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.StatusHighLevelOffsetsLastMsec">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ProgramVelocityCommand">
<summary>This item returns the program velocity command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ProgramVelocityFeedback">
<summary>This item returns the program velocity feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMotionDelayLive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveCommunicationDelay">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveCommunicationDelayLive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketResponseInt32">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketResponseInt16">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketResponseInt8">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketResponseDouble">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketResponseFloat">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketBit">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePacketResponseBit">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SpeedTargetActual">
<summary>This item returns the limited target speed for an axis in a RAPID move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimaryEnDatAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the EnDat encoder connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CoordinatedDistanceRemaining">
<summary>This item returns the distance remaining in a coordinated motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoLoopControlEffort">
<summary>This item returns the value of the servo loop control effort when used with the MIMO control features.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PhaseAVoltageCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PhaseBVoltageCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PhaseCVoltageCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AmplifierPeakCurrent">
<summary>This item returns the peak current rating of the amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FpgaVersion">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTypeId">
<summary>This item returns an ID number identifying the type of drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow0ArrayIndex">
<summary>This item returns the current array index for window 0 when using the PsoWindowConfigureArrayRanges() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow1ArrayIndex">
<summary>This item returns the current array index for window 1 when using the PsoWindowConfigureArrayRanges() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoDistanceArrayIndex">
<summary>This item returns the current array index for the PsoDistanceConfigureArrayDistances() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AmplifierTemperature">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoBitArrayIndex">
<summary>This item returns the current array index for the PsoBitmapConfigureArray() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MxAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the optional Encoder Multiplier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoUpdateRate">
<summary>This item returns the servo update rate in kilohertz.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SettlingTime">
<summary>This item returns the settling time in milliseconds for the most recently completed move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.InternalStatusCode">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FirmwareVersionMajor">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FirmwareVersionMinor">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FirmwareVersionPatch">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FirmwareVersionBuild">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerDebugMax">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MarkerSearchDistance">
<summary>This item returns the distance that was traveled while searching for the marker.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SafeZoneState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionFeedbackGalvo">
<summary>This item returns the position feedback of the galvo scanner. This value represents the location of the scanner within its field-of-view, including calibration, but does not include marking-on-the-fly.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionErrorGalvo">
<summary>This item returns the position error of the galvo scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.LatchedMarkerPosition">
<summary>This item returns the position in encoder counts at which the marker was detected during the home cycle.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MoveReferencePosition">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MoveReferenceOffsetCutterRadius">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MoveReferenceOffsetCornerRounding">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MoveReferenceOffsetTotal">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimaryBissAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the BiSS encoder connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FaultPositionFeedback">
<summary>This item returns the position at which the most recent axis fault occurred.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MotorCommutationAngle">
<summary>This item returns the angle of commutation for the motor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ExpansionBoardOption">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.BusVoltage">
<summary>This item returns the measured bus voltage of this drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PiezoVoltageCommand">
<summary>This item returns the voltage command for a piezo axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PiezoVoltageFeedback">
<summary>This item returns voltage feedback for a piezo axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DistanceLog">
<summary>This item returns the total distance traveled by this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.TimeSinceReset">
<summary>This item returns the amount of time since the last reset.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MaximumVoltage">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CommandOutputType">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoLoopFeedforwardControlEffort">
<summary>This item returns the feedforward contribution to the servo loop output as determined by the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.LastTickCounter">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.BoardRevision">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GalvoLaserOutput">
<summary>This item returns the value of the galvo laser output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GalvoLaserOutputRawAdvance">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GalvoLaserOnDelay">
<summary>This item returns the time that the Nmark will command the laser to go on relative to the rising edge of the Galvo Laser Output signal.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GalvoLaserOffDelay">
<summary>This item returns the time that the Nmark will command the laser to go off relative to the falling edge of the Galvo Laser Output signal.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GalvoLaserPowerCorrectionOutput">
<summary>This item returns the value of the analog output after laser power correction is applied. If laser power correction is not enabled, it will return zero. Refer to Galvo Power Correction Overview for more information.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CapacitanceSensorRawPosition">
<summary>This item returns the raw reading from the capacitance sensor feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CalibrationAdjustmentState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccuracyCorrectionStartingPosition">
<summary>This item returns the minimum position that is corrected by accuracy calibration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccuracyCorrectionEndingPosition">
<summary>This item returns the maximum position that is corrected by accuracy calibration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCalibrationGalvo">
<summary>This item returns the 2D galvo calibration contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveCommandsDelayed">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveCommandsLost">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.BusVoltageNegative">
<summary>This item returns the measured negative bus voltage of this drive. This item is valid only for drives with a linear amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ProcessorTemperature">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.StoStatus">
<summary>This item returns the value of the STO Status word. The data type of this item is the StoStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.InternalStatusTimestamp">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogSensorInput">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MotorTemperature">
<summary>This item returns the motor temperature in degrees Celsius.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimaryBissStatus">
<summary>This item returns the value of the Primary Biss Status word. The data type of this item is the BissStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveAssert">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoExternalSyncFrequency">
<summary>This item returns the frequency in kHz of the PSO external sync signal.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.EncoderSineRaw">
<summary>This item returns the encoder sine value in A/D counts before correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.EncoderCosineRaw">
<summary>This item returns the encoder cosine value in A/D counts before correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FpgaTemperature">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimaryEnDatStatus">
<summary>This item returns the value of the Primary EnDat Status word. The data type of this item is the EnDatStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerHighPriorityThread">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerLowPriorityThread">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerLowPriorityPacket">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerServoPacket">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerServoThread">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerCurrentPacket">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerCommonCoreThread">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerServoCorePacket">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MultiplierOption">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimaryFeedback">
<summary>This item returns the feedback in encoder counts for the device connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoLoopFeedbackInput0">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoLoopFeedbackInput1">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AccelerationSCurvePercentage">
<summary>This item returns the value of the axis acceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DecelerationSCurvePercentage">
<summary>This item returns the value of the axis deceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.FaultSubcode">
<summary>This item returns additional information regarding the cause of an axis fault. The sub-code is not used for every fault.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ProcessorTemperatureMax">
<summary>This item returns the maximum temperature in degrees Celsius of all internal processor temperature sensors.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerHyperWireDma">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AmplifierTemperatureMax">
<summary>This item returns the maximum amplifier heat sink temperature in degrees Celsius.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryEnDatAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the EnDat encoder connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryEnDatStatus">
<summary>This item returns the value of the Auxiliary EnDat Status word. The data type of this item is the EnDatStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryBissAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the BiSS encoder connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryBissStatus">
<summary>This item returns the value of the Auxiliary Biss Status word. The data type of this item is the BissStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoOption">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveArraySize">
<summary>This item returns the size of the drive array buffer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.RatedMotorSupplyVoltageOption">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GantryMarkerDifference">
<summary>This item returns the distance between the markers of each gantry spar along the linear direction of travel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AbsoluteEncoderOption">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimaryFeedbackStatus">
<summary>This item returns the value of the Primary Feedback Status word. The data type of this item is the PrimaryFeedbackStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryFeedbackStatus">
<summary>This item returns the value of the Auxiliary Feedback Status word. The data type of this item is the AuxiliaryFeedbackStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AmplifierStatus">
<summary>This item returns the value of the Amplifier Status word. The data type of this item is the AmplifierStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.LatchedCwLimitPosition">
<summary>This item returns the position at which the CW limit was detected during execution of the MoveToLimitCw() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.LatchedCcwLimitPosition">
<summary>This item returns the position at which the CCW limit was detected during execution of the MoveToLimitCcw() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GalvoLaserFpgaTransitionDelay">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.HomeTargetPosition">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GantryRealignmentMoveTargetPosition">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.GantryDriveControlRealignmentState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PiezoAccumulatedCharge">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PiezoChargingTime">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimarySsiAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the SSI encoder connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimarySsiStatus">
<summary>This item returns the value of the Primary Ssi Status word. The data type of this item is the SsiStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliarySsiAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the SSI encoder connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliarySsiStatus">
<summary>This item returns the value of the Auxiliary Ssi Status word. The data type of this item is the SsiStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoDistanceActiveDistance">
<summary>This item returns active PSO distance in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow0ActiveLowerBound">
<summary>This item returns the lower bound of the active PSO window 0 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow0ActiveUpperBound">
<summary>This item returns the upper bound of the active PSO window 0 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow1ActiveLowerBound">
<summary>This item returns the lower bound of the active PSO window 1 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWindow1ActiveUpperBound">
<summary>This item returns the upper bound of the active PSO window 1 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWaveformActiveTotalTime">
<summary>This item returns the total time of the active PSO waveform configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWaveformActiveOnTime">
<summary>This item returns the on time of the active PSO waveform configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoWaveformActivePulseCount">
<summary>This item returns the pulse count of the active PSO waveform configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PsoEventActiveBitValue">
<summary>This item returns the bit value of the active PSO event configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerDriveBasedControllerOutputDma">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveTimerPcieInboundFsm">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PrimaryFeedbackServo">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryFeedbackServo">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveStackUsage">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveInterfacePositionCommandPhysical">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveControlReason">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ShuntResistorTemperature">
<summary>This item returns the estimated temperature of the shunt resistor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SyncPortAPosition">
<summary>This item returns the Sync Port A position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SyncPortBPosition">
<summary>This item returns the Sync Port B position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.HighSpeedOutputEncoderPosition">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryEncoderOutputPosition">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SyncPortAStatus">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.SyncPortBStatus">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.HighSpeedOutputEncoderStatus">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AuxiliaryEncoderOutputStatus">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryUInt32">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryUInt16">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DriveMemoryUInt8">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CurrentLoopFeedbackControlEffort">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.CurrentLoopFeedforwardControlEffort">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.HighSpeedInput">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionCommandEncoder">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.PositionFeedbackEncoder">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.ServoLoopFeedbackControlEffort">
<summary>This item returns the feedback control contribution to the servo loop output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogOutputHardwareStatus">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.DigitalOutputHardwareStatus">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.EnhancedScannerControlOption">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogOutput4">
<summary>This item returns the value of analog output 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.AnalogOutput5">
<summary>This item returns the value of analog output 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisDataSignal.MoveReferenceOffsetCutterOffset">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskDataSignal">
<summary>
Represents a task based data collection signal that can be retrieved from the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.ProgramLineNumber">
<summary>This item returns the value of the program line number.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedFlags">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedArcStartAngle">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedArcEndAngle">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedArcRadius">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedArcRadiusError">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedPositionCommand">
<summary>This item returns the coordinated position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedSpeedCommand">
<summary>This item returns the absolute value of the coordinated velocity command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedAccelerationCommand">
<summary>This item returns the absolute value of the coordinated acceleration command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedTotalDistance">
<summary>This item returns the total distance of the coordinated move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedPercentDone">
<summary>This item returns the percentage of the coordinated move that has been completed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedPositionCommandBackwardsDiff">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskParameter">
<summary>This item returns the value of an task parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskError">
<summary>This item returns the task error that is currently active, or zero if there is no error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskWarning">
<summary>This item returns the task warning that is currently active, or zero if there is no warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedSpeedTargetActual">
<summary>This item returns the actual target speed for dominant axes in a coordinated move. The actual target speed may differ from the commanded speed if the move does not reach constant velocity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.DependentCoordinatedSpeedTargetActual">
<summary>This item returns the actual target speed for dependent axes in a coordinated move. The actual target speed may differ from the commanded speed if the move does not reach constant velocity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskStatus0">
<summary>This item returns the value of the Task Status 0 word. The data type of this item is the TaskStatus0 enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskStatus1">
<summary>This item returns the value of the Task Status 1 word. The data type of this item is the TaskStatus1 enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskStatus2">
<summary>This item returns the value of the Task Status 2 word. The data type of this item is the TaskStatus2 enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.SpindleSpeedTarget">
<summary>This item returns the spindle target speed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinateSystem1I">
<summary>This item returns the axis index assigned to the I-axis of coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinateSystem1J">
<summary>This item returns the axis index assigned to the J-axis of coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinateSystem1K">
<summary>This item returns the axis index assigned to the K-axis of coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinateSystem1Plane">
<summary>This item returns the active plane index for coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.Mfo">
<summary>This item returns the MFO value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedSpeedTarget">
<summary>This item returns the target speed for dominant axes in a coordinated move. The target speed is set using the F command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.DependentCoordinatedSpeedTarget">
<summary>This item returns the target speed for dependent axes in a coordinated move. The dependent target speed is set using the E command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedAccelerationRate">
<summary>This item returns the value of the coordinated acceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedDecelerationRate">
<summary>This item returns the value of the coordinated deceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedAccelerationTime">
<summary>This item returns the value of the coordinated acceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedDecelerationTime">
<summary>This item returns the value of the coordinated deceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskMode">
<summary>This item returns the value of the Task Mode word. The data type of this item is the TaskMode enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskState">
<summary>This item returns the current Task State.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskStateInternal">
<summary>This item returns the current internal task state.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.ExecutionMode">
<summary>This item returns the task execution mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.EnableAlignmentAxes">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedGalvoLaserOutput">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedMotionRate">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedTaskCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.EnableState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.LookaheadMovesExamined">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.ProfileControlMask">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedArcRadiusReciprocal">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionEngineStage">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedTimeScale">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedTimeScaleDerivative">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovSpeedScale">
<summary>This item returns the instantaneous speed scaling of your marking and non-marking moves in IFOV. A value of 1.0 indicates full programmed speed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovSpeedScaleAverage">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovGenerationFrameCounter">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovGenerationTimeOriginal">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovGenerationTimeModified">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovCoordinatedPositionCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovCoordinatedSpeedCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovCenterPointH">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovCenterPointV">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovTrajectoryCount">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovTrajectoryIndex">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovAttemptCode">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovGenerationFrameIndex">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovMaximumVelocity">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovIdealVelocity">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskInternalDebug">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovCoordinatedAccelerationCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovFovPositionH">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovFovPositionV">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovFovDimensionH">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.IfovFovDimensionV">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionBufferElements">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionBufferMoves">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionLineNumber">
<summary>This item returns the program line number of the current move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionBufferRetraceMoves">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionBufferRetraceElements">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionBufferIndex">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionBufferIndexLookahead">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionBufferProcessingBlocked">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.ActiveMoveValid">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskExecutionLines">
<summary>This item returns the number of program lines executed during the last millisecond.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.SchedulerTaskHolds">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.SchedulerProgramLoopRuns">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.SchedulerTaskBlocked">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CriticalSectionsActive">
<summary>This item returns the current number of active critical sections.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.AxesSlowdownReason">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskExecutionTime">
<summary>This item returns the processor time used by the given task in the current millisecond.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskExecutionTimeMaximum">
<summary>This item returns the maximum processor time used by the given task.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskExecutionLinesMaximum">
<summary>This item returns the maximum number of program lines executed by the task in a millisecond.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.LookaheadDecelReason">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.LookaheadDecelMoves">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.LookaheadDecelDistance">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.ProgramCounter">
<summary>This item returns the value of the program counter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.StackPointer">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.FramePointer">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.StringStackPointer">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.ProgramLineNumberSourceFileId">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionLineNumberSourceFileId">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.ProgramLineNumberSourcePathId">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.MotionLineNumberSourcePathId">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.StringArgumentStackPointer">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedAccelerationSCurvePercentage">
<summary>This item returns the value of the coordinated acceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CoordinatedDecelerationSCurvePercentage">
<summary>This item returns the value of the coordinated deceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.DependentCoordinatedAccelerationRate">
<summary>This item returns the value of the dependent coordinated acceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.DependentCoordinatedDecelerationRate">
<summary>This item returns the value of the dependent coordinated deceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CriticalSectionTimeout">
<summary>This item returns the current critical section timeout in microseconds.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CommandQueueCapacity">
<summary>This item returns the maximum number of commands that can simultaneously fit in the command queue.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CommandQueueUnexecutedCount">
<summary>This item returns the number of commands in the command queue that have not finished executing. This item includes any command that is currently executing, if there is one. An individual command can contain one or more lines of AeroScript.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CommandQueueTimesEmptied">
<summary>This item returns the number of times that the command queue has become empty.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CommandQueueExecutedCount">
<summary>This item returns the number of commands that have been executed from the command queue over its entire lifespan. An individual command can contain one or more lines of AeroScript.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.CommandQueueLineNumber">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskReal">
<summary>This item returns the value of a task real.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskDataSignal.TaskInteger">
<summary>This item returns the value of a task integer.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemDataSignal">
<summary>
Represents a system based data collection signal that can be retrieved from the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.VirtualBinaryInput">
<summary>This item returns the value of a 16-bit virtual binary input word. To get the value of a single input bit, use the Virtual Binary Input Bit item as an alternative.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.VirtualBinaryOutput">
<summary>This item returns the value of a 16-bit virtual binary output word. To get the value of a single output bit, use the Virtual Binary Output Bit item as an alternative.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.VirtualRegisterInput">
<summary>This item returns the value of a virtual register input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.VirtualRegisterOutput">
<summary>This item returns the value of a virtual register output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.Timer">
<summary>This item returns the value of a system timer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.TimerPerformance">
<summary>This item returns the value of a system performance timer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.GlobalReal">
<summary>This item returns the value of a global real.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.CommunicationRealTimeErrors">
<summary>This item returns the number of times that the Automation1 did not have sufficient time to complete all of its operations. Refer to Optimizing Automation1 Performance for instructions about how to optimize the controller settings and prevent this problem.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.LibraryCommand">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.DataCollectionSampleTime">
<summary>This item returns the data collection sample time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.DataCollectionSampleIndex">
<summary>This item returns the data collection sample index.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientConnected">
<summary>This item returns a boolean value that indicates if the connection is established.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusServerConnected">
<summary>This item returns a boolean value that indicates if the connection is established.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientError">
<summary>This item returns the value of the last system error code to occur on this connection.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusServerError">
<summary>This item returns the value of the last system error code to occur on this connection.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.StopWatchTimer">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ScopetrigId">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EstimatedProcessorUsage">
<summary>This item returns the estimated SMC processor usage as a percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.DataCollectionStatus">
<summary>This item returns the value of the Data Collection Flags word. The data type of this item is the DataCollectionFlags enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.SignalLogState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.SafeZoneViolationMask">
<summary>This item returns the mask of violated safe zones. Once a zone is violated it will remain violated until any one of the axes in the safe zone is moved again.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.SafeZoneActiveMask">
<summary>This item returns the mask of active safe zones.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientInputWords">
<summary>This item returns the current state of the Modbus Client Input Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientOutputWords">
<summary>This item returns the current state of the Modbus Client Output Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientInputBits">
<summary>This item returns the current state of the Modbus Client Input Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientOutputBits">
<summary>This item returns the current state of the Modbus Client Output Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientOutputBitsStatus">
<summary>This item returns the current state of the Modbus Client Output Bits Status I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientOutputWordsStatus">
<summary>This item returns the current state of the Modbus Client Output Words Status I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusServerInputWords">
<summary>This item returns the current state of the Modbus Server Input Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusServerOutputWords">
<summary>This item returns the current state of the Modbus Server Output Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusServerInputBits">
<summary>This item returns the current state of the Modbus Server Input Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusServerOutputBits">
<summary>This item returns the current state of the Modbus Server Output Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.SystemParameter">
<summary>This item returns the value of a system parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ThermoCompSensorTemperature">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ThermoCompControllingTemperature">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ThermoCompCompensatingTemperature">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ThermoCompStatus">
<summary>If non-zero, the ThermoComp status word is masked with this value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.GlobalInteger">
<summary>This item returns the value of a global integer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.AliveAxesMask">
<summary>This item returns the mask of axes that we are communicating with.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.SignalLogPointsStored">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ControllerInitializationWarning">
<summary>This item returns the warning generated during controller initialization, or zero if there is no warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.StopWatchTimerMin">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.StopWatchTimerMax">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.StopWatchTimerAvg">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EthercatEnabled">
<summary>This item indicates if the controller has been configured to run the EtherCAT stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EthercatError">
<summary>This item returns the value of the last system error code to occur in the EtherCAT stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EthercatTxPdo">
<summary>This item returns the value of the Tx PDO slot specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EthercatTxPdoSize">
<summary>This item returns the size of the data in the Tx PDO channel as the number of bytes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EthercatRxPdo">
<summary>This item returns the value of the Rx PDO slot specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EthercatRxPdoSize">
<summary>This item returns the size of the data in the Rx PDO channel as the number of bytes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EthercatState">
<summary>This item returns the current state of the EtherCAT stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusClientEnabled">
<summary>This item indicates if the controller has been configured to run the Modbus Client.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ModbusServerEnabled">
<summary>This item indicates if the controller has been configured to run the Modbus Server.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.HyperWireExternalSynchronizationActive">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.HyperWireExternalSynchronizationFrequency">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.HyperWireExternalSynchronizationLagging">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.HyperWireExternalSynchronizationAdjustmentNanoseconds">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.CallbackSlotProcessingState">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.ControllerAssertCount">
<summary>This signal is internal. Do not use this signal unless Aerotech personnel instructs you to do so. Aerotech might change or remove this signal without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.VirtualBinaryInputBit">
<summary>This item returns the value of a virtual binary input bit.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.VirtualBinaryOutputBit">
<summary>This item returns the value of a virtual binary output bit.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EtherNetIpAdapterEnabled">
<summary>This item identifies if the controller is configured to run the EtherNet/IP adapter stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EtherNetIpAdapterConnected">
<summary>This item identifies if the EtherNet/IP adapter has an active connection with an EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EtherNetIpAdapterError">
<summary>This item returns the value of the last system error code that occurred on this connection.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EtherNetIpAdapterInputIntegerSize">
<summary>This item identifies the configured size of the EtherNet/IP input integer assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EtherNetIpAdapterInputFloatSize">
<summary>This item identifies the configured size of the EtherNet/IP input float assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EtherNetIpAdapterOutputIntegerSize">
<summary>This item identifies the configured size of the EtherNet/IP output integer assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemDataSignal.EtherNetIpAdapterOutputFloatSize">
<summary>This item identifies the configured size of the EtherNet/IP output float assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DevicesInformation">
<summary>
A class to get the HyperWire devices that are connected to an Automation1 controller.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DevicesInformation.#ctor(Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.HyperWireCard},Aerotech.Automation1.DotNet.RefreshableLazy{System.Collections.Generic.IReadOnlyList{Aerotech.Automation1.DotNet.HyperWireDevice}})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DevicesInformation.HyperWireCard">
<summary>
Gets the active PCIe HyperWire card used by a PC-Based Automation1 controller to communicate with connected HyperWire devices (<see cref="P:Aerotech.Automation1.DotNet.DevicesInformation.HyperWireDevices"/>),
or null if a PCIe HyperWire card is not in use.
</summary>
<remarks>
There might be more than one PCIe HyperWire card installed in the PC but this property is the single PCIe HyperWire card currently being used by the Automation1 controller.
This property will be null if the Automation1 controller is operating without a HyperWire card (i.e. in virtual mode or if it is a drive-based controller).
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.DevicesInformation.HyperWireDevices">
<summary>
Gets the collection of HyperWire devices connected to the Automation1 controller over the HyperWire motion bus.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireCard">
<summary>
Represents a PCIe HyperWire card used by a PC-Based Automation1 controller to communicate with connected HyperWire devices.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.HyperWireCard.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Version)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCard.BusNumber">
<summary>
Gets the PCI bus number this PCIe HyperWire card is on. This is used along with <see cref="P:Aerotech.Automation1.DotNet.HyperWireCard.DeviceNumber"/> and <see cref="P:Aerotech.Automation1.DotNet.HyperWireCard.FunctionNumber"/> to uniquely identify the PCIe card in the PC.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCard.DeviceNumber">
<summary>
Gets the PCI device number for this PCIe HyperWire card. This is used along with <see cref="P:Aerotech.Automation1.DotNet.HyperWireCard.BusNumber"/> and <see cref="P:Aerotech.Automation1.DotNet.HyperWireCard.FunctionNumber"/> to uniquely identify the PCIe card in the PC.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCard.FunctionNumber">
<summary>
Gets the PCI function number for this PCIe HyperWire card. This is used along with <see cref="P:Aerotech.Automation1.DotNet.HyperWireCard.BusNumber"/> and <see cref="P:Aerotech.Automation1.DotNet.HyperWireCard.DeviceNumber"/> to uniquely identify the PCIe card in the PC.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCard.VendorId">
<summary>
Gets the vendor ID of this PCIe HyperWire card.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCard.DeviceId">
<summary>
Gets the device ID of this PCIe HyperWire card.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireCard.FirmwareVersion">
<summary>
Gets the version of firmware running on this PCIe HyperWire card.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireCardPort">
<summary>
Represents one of the communication ports on a PCIe HyperWire card.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireCardPort.None">
<summary>No port on the HyperWire card or not connected to a HyperWire card.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireCardPort.PortA">
<summary>The 'A' port on a HyperWire card.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireCardPort.PortB">
<summary>The 'B' port on a HyperWire card.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireDevice">
<summary>
Represents a specific HyperWire device connected to the Automation1 controller over the HyperWire motion bus.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.HyperWireDevice.#ctor(Aerotech.Automation1.DotNet.HyperWireDeviceType,System.Version,System.Int32,System.Int32,Aerotech.Automation1.DotNet.HyperWireCardPort,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.Axis},System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireDevice.DeviceType">
<summary>
Gets the type of device this object represents.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireDevice.FirmwareVersion">
<summary>
Gets the version of firmware running on this HyperWire device.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireDevice.DeviceIndex">
<summary>
Gets the numeric index of this HyperWire device as it is connected to the Automation1 controller over the HyperWire motion bus.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireDevice.BackplaneSlot">
<summary>
Gets the backplane slot of this HyperWire device.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireDevice.HyperWireCardPort">
<summary>
Gets which communication port this HyperWire device is connected to on a PCIe HyperWire card, if any.
</summary>
<remarks>
This will be <see cref="F:Aerotech.Automation1.DotNet.HyperWireCardPort.None"/> if the HyperWire device is not connected to a HyperWire card (i.e. if it is a drive-based controller).
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireDevice.Axes">
<summary>
Gets the collection of axes that this HyperWire device has, if any.
</summary>
<remarks>
If this HyperWire device has no axes then this collection will be empty. HyperWire devices with axes are known as drives. This collection is not indexed
by axis index or by axis name, instead it is simply an array-like collection that always starts at index 0.
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.HyperWireDevice.HasIOExpansionBoard">
<summary>
Gets whether the device has an IO Expansion Board installed.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireDeviceType">
<summary>
Represents the type of HyperWire device connected to an Automation1 controller over the HyperWire motion bus.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.Unknown">
<summary>A HyperWire device that is present on the HyperWire motion bus, but either it is malfunctioning or we don't know what it is (likely not supported in this software version).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.GL4">
<summary>A GL4 HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XR3_NoAmplifier">
<summary>An XR3 HyperWire drive with no amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XR3_XSP3">
<summary>An XR3 HyperWire drive with an XSP3 amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XR3_XSL3">
<summary>An XR3 HyperWire drive with an XSL3 amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XR3_QSL3e">
<summary>An XR3 HyperWire drive with a QSL3e amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XC2">
<summary>An XC2 HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XC2e">
<summary>An XC2e HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XC4">
<summary>An XC4 HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XC4e">
<summary>An XC4e HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XL4s">
<summary>An XL4s HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XL5e">
<summary>An XL5e HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.SI4">
<summary>An SI4 HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XC6e">
<summary>An XC6e HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXC4">
<summary>An iXC4 HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXC4e">
<summary>An iXC4e HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XL2e">
<summary>An XL2e HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XR3_QSL3_2">
<summary>An XR3 HyperWire drive with a QSL3-2 amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XI4">
<summary>An XI4 HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXL5e">
<summary>An iXL5e HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXC6e">
<summary>An iXC6e HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXR3_NoAmplifier">
<summary>An iXR3 HyperWire drive-based controller with no amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXR3_XSP3">
<summary>An iXR3 HyperWire drive-based controller with an XSP3 amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXR3_XSL3">
<summary>An iXR3 HyperWire drive-based controller with an XSL3 amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXR3_QSL3e">
<summary>An iXR3 HyperWire drive-based controller with a QSL3e amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXR3_QSL3_2">
<summary>An iXR3 HyperWire drive-based controller with a QSL3-2 amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.GI4">
<summary>A GI4 HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXC2">
<summary>An iXC2 HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXC2e">
<summary>An iXC2e HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXL2e">
<summary>An iXL2e HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXI4">
<summary>An iXI4 HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.FLEX">
<summary>A FLEX HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iFLEX">
<summary>An iFLEX HyperWire drive-based controller.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.XA4">
<summary>An XA4 HyperWire drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireDeviceType.iXA4">
<summary>An iXA4 HyperWire drive-based controller.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DistanceUnits">
<summary>
Represents the type of distance units used for motion.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DistanceUnits.Primary">
<summary>Primary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DistanceUnits.Secondary">
<summary>Secondary units.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TimeUnits">
<summary>
Represents the type of time units used for motion.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TimeUnits.Seconds">
<summary>Feedrates are specified in distance units per second.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TimeUnits.Minutes">
<summary>Feedrates are specified in distance units per minute.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TargetMode">
<summary>
Represents a motion target mode.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TargetMode.Incremental">
<summary>Motion target positions are relative to the current axis locations.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TargetMode.Absolute">
<summary>Motion target positions are absolute.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.WaitMode">
<summary>
Represents a motion waiting mode.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.WaitMode.MotionDone">
<summary>Wait for the motion to be done before continuing execution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.WaitMode.InPosition">
<summary>Wait for the motion to be done and for the position error to reach a specified value before continuing execution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.WaitMode.Auto">
<summary>Wait the minimum quantity of time between motion blocks before continuing execution.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.NormalcyAlignment">
<summary>
Represents the type of normalcy alignment.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.NormalcyAlignment.Left">
<summary>Keeps the normalcy axis perpendicular and to the left of the part.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.NormalcyAlignment.Right">
<summary>Keeps the normalcy axis perpendicular and to the right of the part.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.NormalcyAlignment.Relative">
<summary>Keeps the normalcy axis at a relative angle to the part.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ReturnType">
<summary>
Represents how motion is affected when disabling interrupt motion mode.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ReturnType.Interrupt">
<summary>The axes return to the positions where the interruption occurred.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ReturnType.Offset">
<summary>The axes do not return to the positions where the interruption occurred, and subsequent moves have an offset added.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FileMode">
<summary>
Represents the mode in which a file is opened.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FileMode.Overwrite">
<summary>Opens a new file and overwrites the existing file.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FileMode.Read">
<summary>Opens an existing file only for reading.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FileMode.Append">
<summary>Opens an existing file only for appending data to the end of the file.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TimerMode">
<summary>
Represents the precision of reading a timer.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TimerMode.Standard">
<summary>Retrieves the timer value as an integer number of milliseconds.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TimerMode.Precise">
<summary>Retrieves the timer value with a resolution of 0.0001 milliseconds.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DateTimeStringFormat">
<summary>
Represents the format to use when creating a date and time string.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DateTimeStringFormat.Default">
<summary>Create the date and time string using this format &quot;[DayOfWeek] YYYY-MM-DD HH:MM:SS [TimeZone]&quot;.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DateTimeStringFormat.Iso8601Local">
<summary>Create the date and time string using the ISO-8601 Local format, which looks like &quot;YYYY-MM-DDTHH:MM:SS&quot;.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DateTimeStringFormat.Iso8601Utc">
<summary>Create the date and time string using the ISO-8601 UTC format, which looks like &quot;YYYY-MM-DDTHH:MM:SSZ&quot;.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DateTimeStringFormat.Iso8601UtcWithOffset">
<summary>Create the date and time string using the ISO-8601 UTC format with the UTC offset, which looks like &quot;YYYY-MM-DDTHH:MM:SS+HHMM&quot; or &quot;YYYY-MM-DDTHH:MM:SS-HHMM&quot;.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MessageSeverity">
<summary>
Represents the severity of a message in the application.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageSeverity.Default">
<summary>The message has default severity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageSeverity.Information">
<summary>The message contains information.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageSeverity.Warning">
<summary>The message contains a warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageSeverity.Error">
<summary>The message contains an error.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.LampColor">
<summary>
Represents the color of a lamp.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Gray">
<summary>The color gray.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Black">
<summary>The color black.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Red">
<summary>The color red.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Orange">
<summary>The color orange.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Blue">
<summary>The color blue.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Magenta">
<summary>The color magenta.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Green">
<summary>The color green.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Yellow">
<summary>The color yellow.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Cyan">
<summary>The color cyan.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.White">
<summary>The color white.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Purple">
<summary>The color purple.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.LampColor.Brown">
<summary>The color brown.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndicatorAnimationType">
<summary>
Represents the animation type of an App Indicator.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.IndicatorAnimationType.Solid">
<summary>Solid background using $backgroundColor1 and $foregroundColor1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.IndicatorAnimationType.Flash">
<summary>Flashes between $backgroundColor1 and transparent with no transition colors between the two. The foreground color is $foregroundColor1 for the full animation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.IndicatorAnimationType.TwoColorFlash">
<summary>Flashes between $backgroundColor1 and $backgroundColor2 with no transition colors between the two. Also alternates the $displayText between $foregroundColor1 and $foregroundColor2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.IndicatorAnimationType.ColorSweep">
<summary>Transitions smoothly between $backgroundColor1 and $backgroundColor2 with intermediary colors. Also transitions the $displayText between $foregroundColor1 and $foregroundColor2.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GalvoLaser">
<summary>
Represents the mode for controlling a laser.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoLaser.Off">
<summary>Manually turns off the laser.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoLaser.On">
<summary>Manually turns on the laser.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoLaser.Auto">
<summary>Specifies that the laser is automatically controlled.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GalvoWobbleMode">
<summary>
Specifies the mode of the wobble pattern.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoWobbleMode.TimeBased">
<summary>The wobble is repeated at a fixed time interval.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoWobbleMode.DistanceBased">
<summary>The wobble is repeated at a fixed vector distance.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GalvoWobbleType">
<summary>
Specifies the type of the wobble pattern.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoWobbleType.Ellipse">
<summary>The pattern uses an ellipse shape.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoWobbleType.Figure8Parallel">
<summary>The pattern uses a figure 8 shape that is parallel to the vector path.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoWobbleType.Figure8Perpendicular">
<summary>The pattern uses a figure 8 shape that is perpendicular to the vector path.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoDistanceCounterResetMask">
<summary>
Specifies the conditions that will reset the PSO distance counters.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceCounterResetMask.ResetUntilMarker">
<summary>The counters will be held in reset until the first marker is encountered.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceCounterResetMask.ResetOnMarker">
<summary>The counters will reset when the marker is encountered.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceCounterResetMask.ResetOutsideWindow">
<summary>The counters will be held in reset when the PSO window output is off.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceCounterResetMask.ResetWhenLaserOff">
<summary>The counters will be held in reset when the laser command bit is off.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceCounterResetMask.ResetWhenOutputOff">
<summary>The counters will be held in reset when the PSO output is off.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection">
<summary>
Specifies the motion directions that can generate PSO events.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection.Both">
<summary>PSO events will be generated when the distance counter reaches the configured distance in both directions.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection.Positive">
<summary>PSO events will only be generated when the distance counter reaches the configured distance in the positive direction.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceAllowedEventDirection.Negative">
<summary>PSO events will only be generated when the distance counter reaches the configured distance in the negative direction.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWindowUpdateDirection">
<summary>
Specifies the directions in which exiting the active PSO window will result in the window updating to the next pair of ranges.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowUpdateDirection.Both">
<summary>The PSO window range will update when exiting the active window in either direction.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowUpdateDirection.Positive">
<summary>The PSO window range will only update when exiting the active window in the positive direction.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowUpdateDirection.Negative">
<summary>The PSO window range will only update when exiting the active window in the negative direction.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWindowCounterResetMask">
<summary>
Specifies the conditions that will reset the PSO window counters.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowCounterResetMask.ResetUntilMarker">
<summary>The counters will be held in reset until the first marker is encountered.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowCounterResetMask.ResetOnMarker">
<summary>The counters will reset when the marker is encountered.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWindowEventMode">
<summary>
Specifies the conditions that will generate a PSO event when entering or exiting the PSO window.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowEventMode.None">
<summary>An event will not be generated when entering or exiting the window.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowEventMode.Enter">
<summary>An event will be generated when entering the window.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowEventMode.Exit">
<summary>An event will be generated when exiting the window.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowEventMode.Both">
<summary>An event will be generated when entering or exiting the window.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoEventMask">
<summary>
Specifies additional conditions to prevent PSO events from occurring.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoEventMask.WindowMask">
<summary>PSO events will not occur when the window output is off.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoEventMask.WindowMaskInvert">
<summary>PSO events will not occur when the window output is on.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoEventMask.LaserMask">
<summary>PSO events will not occur when the laser command bit is off.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoEventMask.BitMask">
<summary>PSO events will not occur when the active PSO bit is 0.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWaveformMode">
<summary>
Selects the output mode of the PSO waveform module.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformMode.Pulse">
<summary>Selects a configurable set of pulses as the PSO waveform output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformMode.Pwm">
<summary>Selects a configurable PWM output as the PSO waveform output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformMode.Toggle">
<summary>Selects a toggling output as the PSO waveform output.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWaveformPulseMask">
<summary>
Specifies additional conditions to disable the PSO waveform output in pulse mode.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformPulseMask.WindowMask">
<summary>PSO waveform output will be deactivated when the window output is off.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformPulseMask.WindowMaskInvert">
<summary>PSO waveform output will be deactivated when the window output is on.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformPulseMask.LaserMask">
<summary>PSO waveform output will be deactivated when the laser command bit is off.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWaveformScalingMode">
<summary>
Specifies the scaling mode of the PSO waveform module.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingMode.ScaleTotalTimeAndOnTime">
<summary>Applies waveform scaling to the total time and on time parameters.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingMode.ScaleOnTimeOnly">
<summary>Applies waveform scaling to the on time parameter only.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingMode.ScaleTotalTimeOnly">
<summary>Applies waveform scaling to the total time parameter only.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWaveformScalingInput">
<summary>
Specifies the scaling input signal of the PSO waveform module.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingInput.DrivePulseStreamVelocity">
<summary>Uses the velocity from the drive pulse stream to determine the waveform scaling value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingInput.AnalogInput0">
<summary>Uses analog input 0 to determine the waveform scaling value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingInput.AnalogInput1">
<summary>Uses analog input 1 to determine the waveform scaling value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingInput.AnalogInput2">
<summary>Uses analog input 2 to determine the waveform scaling value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformScalingInput.AnalogInput3">
<summary>Uses analog input 3 to determine the waveform scaling value.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoOutputSource">
<summary>
Selects the internal PSO signal to drive onto the active PSO output pin.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputSource.Waveform">
<summary>The PSO output will be active when the PSO waveform output is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputSource.WindowOutput">
<summary>The PSO output will be active when the PSO window output is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputSource.WindowOutputInvert">
<summary>The PSO output will be active when the PSO window output is not active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputSource.Bitmap">
<summary>The PSO output will be active when the active PSO bit is 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputSource.DataCollectionSyncPulse">
<summary>The PSO output will have a rising edge when a data collection sample is taken.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SafeZoneType">
<summary>
Represents a type of safe zone.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SafeZoneType.NoEnter">
<summary>Positions will stay outside of the zone.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SafeZoneType.NoExit">
<summary>Positions will stay inside the zone.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SafeZoneType.NoEnterAxisFault">
<summary>Positions will stay outside of the zone and a safe zone axis fault is generated if the safe zone is violated.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SafeZoneType.NoExitAxisFault">
<summary>Positions will stay inside the zone and a safe zone axis fault is generated if the safe zone is violated.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.JoystickInput">
<summary>
Represents a joystick input.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.JoystickInput.Input0">
<summary>The first joystick input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.JoystickInput.Input1">
<summary>The second joystick input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.JoystickInput.Input2">
<summary>The third joystick input.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IfovSetupItem">
<summary>
Represents the item to configure for IFOV.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.IfovSetupItem.InterpolationMode">
<summary>Specifies the interpolation that the IFOV algorithm uses to generate motion on the galvo axes and additional axes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.IfovSetupItem.TimeScaleRampBehavior">
<summary>Specifies the ramping behavior that the IFOV algorithm uses to decelerate and accelerate the galvo axes and additional axes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.IfovSetupItem.TimeGranularity">
<summary>Specifies the time granularity of the windowing algorithm in milliseconds.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GearingSource">
<summary>
Specifies the input data source for gearing motion.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GearingSource.PositionFeedback">
<summary>Use Position Feedback on the leader axis as the source for gearing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GearingSource.PositionCommand">
<summary>Use Position Command on the leader axis as the source for gearing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GearingSource.AuxiliaryFeedback">
<summary>Use Auxiliary Feedback on the leader axis as the source for gearing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GearingSource.SyncPortA">
<summary>Use Sync Port A as the source for gearing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GearingSource.SyncPortB">
<summary>Use Sync Port B as the source for gearing.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GearingFilter">
<summary>
Gearing filter configuration option.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GearingFilter.None">
<summary>No filter is applied to the gearing motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GearingFilter.Filtered">
<summary>Low-pass filter is applied to the gearing motion.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CammingUnits">
<summary>
Units for the camming table values.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingUnits.Primary">
<summary>Primary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingUnits.Secondary">
<summary>Secondary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingUnits.Counts">
<summary>Values in counts.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CammingInterpolation">
<summary>
Interpolation mode for camming.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingInterpolation.Linear">
<summary>Linear interpolation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingInterpolation.Cubic">
<summary>Cubic interpolation.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CammingWrapping">
<summary>
Wrapping mode for the camming table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingWrapping.NoWrap">
<summary>Table leader axis values will not wrap. This is the default controller behavior and is correct for most applications.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingWrapping.Wrap">
<summary>Table leader axis values wrap creating a cyclic array. This is useful for rotary applications where the first position is 0 degrees and the final position is 360 degrees.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CammingSource">
<summary>
Specifies the input data source for camming motion.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingSource.PositionFeedback">
<summary>Use Position Feedback on the leader axis as the source for camming.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingSource.PositionCommand">
<summary>Use Position Command on the leader axis as the source for camming.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingSource.AuxiliaryFeedback">
<summary>Use Auxiliary Feedback on the leader axis as the source for camming.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingSource.SyncPortA">
<summary>Use Sync Port A as the source for camming.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingSource.SyncPortB">
<summary>Use Sync Port B as the source for camming.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CammingOutput">
<summary>
Specifies the output signal to generate on the camming follower axis. Also specifies the leader axis and follower axis synchronization to use when camming is enabled.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingOutput.RelativePosition">
<summary>The follower axis will operate in position-based relative synchronization mode. All camming table values for the follower axis are treated as absolute positions, but the follower axis will remain at the current position when camming is enabled. An offset will be applied to all follower axis positions in the camming table, and the offset is computed based on the current leader axis position and current follower axis position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingOutput.AbsolutePosition">
<summary>The follower axis will operate in position-based absolute synchronization mode. All camming table values for the follower axis are treated as absolute positions, and the controller will perform an alignment move on the follower axis when camming is enabled. The controller moves the follower axis to the position specified in the camming table based on the current leader axis position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CammingOutput.Velocity">
<summary>The follower axis will operate in velocity mode. All camming table values for the follower axis are treated as velocities, but the follower axis will remain at the current velocity when camming is enabled. An offset will be applied to all follower axis velocities in the camming table, and the offset is computed based on the current leader axis position and current follower axis velocity.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ServoLoopGain">
<summary>
Type of servo loop gain.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainK">
<summary>Overall servo.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainKiv">
<summary>Velocity loop integral.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainKip">
<summary>Position loop integral.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainKv">
<summary>Position scaling.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainKpv">
<summary>Velocity loop proportional.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainKip2">
<summary>Position loop pure integral.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainKsi1">
<summary>Parallel integral.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainKsi2">
<summary>Parallel integral.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ServoLoopGain.GainAlpha">
<summary>Dual loop scaling.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FeedforwardGain">
<summary>
Type of feedforward gain.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedforwardGain.GainAff">
<summary>Acceleration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedforwardGain.GainVff">
<summary>Velocity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedforwardGain.GainJff">
<summary>Jerk.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedforwardGain.GainPff">
<summary>Position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedforwardGain.GainSff">
<summary>Snap.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ThermoCompMode">
<summary>
ThermoComp operation mode.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ThermoCompMode.LinearStage">
<summary>Linear Stage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ThermoCompMode.BallScrewStage">
<summary>Ball Screw Stage.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RealDisplayFormat">
<summary>
Display format for RealToString.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RealDisplayFormat.Decimal">
<summary>Standard floating point.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RealDisplayFormat.Scientific">
<summary>Standard scientific notation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RealDisplayFormat.Compact">
<summary>Chooses the most compact representation - Decimal or Scientific.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EncoderOutputChannel">
<summary>
The source used as the output channel for encoder echoing.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderOutputChannel.AuxiliaryEncoder">
<summary>Auxiliary channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderOutputChannel.SyncPortA">
<summary>Sync Port A channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderOutputChannel.SyncPortB">
<summary>Sync Port B channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderOutputChannel.HighSpeedOutputs">
<summary>High Speed Output channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderOutputChannel.EncoderOutputConnector">
<summary>Encoder Output Connector channel.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EncoderInputChannel">
<summary>
The source used as the input channel for encoder echoing.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderInputChannel.PrimaryEncoder">
<summary>Primary channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderInputChannel.AuxiliaryEncoder">
<summary>Auxiliary channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderInputChannel.SyncPortA">
<summary>Sync Port A channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderInputChannel.SyncPortB">
<summary>Sync Port B channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderInputChannel.PulseStream">
<summary>Pulse Stream channel.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EncoderOutputMode">
<summary>
The mode used for encoder echoing.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderOutputMode.Quadrature">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to Default. Use Default instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderOutputMode.Default">
<summary>The controller will use the DriveEncoderOutputConfigureInput() configuration to determine if the output signal is Quadrature or Clock and Direction.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode">
<summary>
The signal mode used when DriveEncoderOutputConfigureInput() and DriveEncoderOutputOn() are configured to echo the Pulse Stream signal to an encoder output.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode.Quadrature">
<summary>Quadrature mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DrivePulseStreamSignalMode.ClockDirection">
<summary>Clock and Direction mode.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent">
<summary>
Specifies the event which causes a new analog output value to be read from the drive array and sent to the output.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent.Time">
<summary>Updates will occur at a specific rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent.PsoEvent">
<summary>Updates will occur on a PSO event.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputUpdateEvent.PsoOutput">
<summary>Updates will occur on the rising edge of PSO output.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveDataCaptureInput">
<summary>
Specifies the item that will be stored when the Drive Data Capture trigger occurs.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.PositionCommand">
<summary>Position Command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.PrimaryFeedback">
<summary>Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.AuxiliaryFeedback">
<summary>Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.AnalogInput0">
<summary>Analog Input 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.AnalogInput1">
<summary>Analog Input 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.AnalogInput2">
<summary>Analog Input 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.AnalogInput3">
<summary>Analog Input 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.PositionFeedback">
<summary>Position Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.SyncPortA">
<summary>Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureInput.SyncPortB">
<summary>Sync Port B.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger">
<summary>
Specifies the event that Drive Data Capture uses to trigger a capture of the configured source signal.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.PsoOutput">
<summary>PSO output rising edge.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.PsoEvent">
<summary>PSO event.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.HighSpeedInput0RisingEdge">
<summary>High Speed Input 0 rising edge.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.HighSpeedInput0FallingEdge">
<summary>High Speed Input 0 falling edge.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.HighSpeedInput1RisingEdge">
<summary>High Speed Input 1 rising edge.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.HighSpeedInput1FallingEdge">
<summary>High Speed Input 1 falling edge.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.AuxiliaryMarkerRisingEdge">
<summary>Auxiliary Marker rising edge.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveDataCaptureTrigger.AuxiliaryMarkerFallingEdge">
<summary>Auxiliary Marker falling edge.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveArrayType">
<summary>
Specifies the type of drive array feature to use.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveArrayType.AnalogOutputVoltages">
<summary>32-bit floating-point voltages.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveArrayType.DataCapturePositions">
<summary>64-bit floating-point counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveArrayType.PsoBitmapBits">
<summary>32-bit unsigned integer bitmaps.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveArrayType.PsoDistanceEventDistances">
<summary>32-bit unsigned integer counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveArrayType.PsoPulseTimes">
<summary>32-bit floating-point microseconds.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveArrayType.PsoPulseCounts">
<summary>32-bit unsigned integers.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveArrayType.PsoWindowRanges">
<summary>32-bit signed integer counts.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoDistanceInput">
<summary>
Specifies the PSO distance input settings for each drive.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4PrimaryFeedbackAxis1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to GL4PrimaryFeedbackAxis1Encoder0. Use GL4PrimaryFeedbackAxis1Encoder0 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4PrimaryFeedbackAxis2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to GL4PrimaryFeedbackAxis2Encoder0. Use GL4PrimaryFeedbackAxis2Encoder0 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedback1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis1. Use XI4AuxiliaryFeedbackAxis1 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedback2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis2. Use XI4AuxiliaryFeedbackAxis2 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedback3">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis3. Use XI4AuxiliaryFeedbackAxis3 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedback4">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis4. Use XI4AuxiliaryFeedbackAxis4 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedback1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis1. Use iXI4AuxiliaryFeedbackAxis1 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedback2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis2. Use iXI4AuxiliaryFeedbackAxis2 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedback3">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis3. Use iXI4AuxiliaryFeedbackAxis3 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedback4">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis4. Use iXI4AuxiliaryFeedbackAxis4 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4PrimaryFeedbackAxis1Encoder0">
<summary>GL4 Primary Feedback Axis 1 Encoder 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4PrimaryFeedbackAxis2Encoder0">
<summary>GL4 Primary Feedback Axis 2 Encoder 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4IfovFeedbackAxis1">
<summary>GL4 Primary Feedback Axis 1 with IFOV input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4IfovFeedbackAxis2">
<summary>GL4 Primary Feedback Axis 2 with IFOV input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4AuxiliaryFeedbackAxis1">
<summary>GL4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4AuxiliaryFeedbackAxis2">
<summary>GL4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4SyncPortA">
<summary>GL4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4SyncPortB">
<summary>GL4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4DrivePulseStreamAxis1">
<summary>GL4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4DrivePulseStreamAxis2">
<summary>GL4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL4sPrimaryFeedback">
<summary>XL4s Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL4sAuxiliaryFeedback">
<summary>XL4s Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL4sSyncPortA">
<summary>XL4s Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL4sSyncPortB">
<summary>XL4s Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL4sDrivePulseStream">
<summary>XL4s Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3PrimaryFeedbackAxis1">
<summary>XR3 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3PrimaryFeedbackAxis2">
<summary>XR3 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3PrimaryFeedbackAxis3">
<summary>XR3 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3PrimaryFeedbackAxis4">
<summary>XR3 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3PrimaryFeedbackAxis5">
<summary>XR3 Primary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3PrimaryFeedbackAxis6">
<summary>XR3 Primary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3AuxiliaryFeedbackAxis1">
<summary>XR3 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3AuxiliaryFeedbackAxis2">
<summary>XR3 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3AuxiliaryFeedbackAxis3">
<summary>XR3 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3AuxiliaryFeedbackAxis4">
<summary>XR3 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3AuxiliaryFeedbackAxis5">
<summary>XR3 Auxiliary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3AuxiliaryFeedbackAxis6">
<summary>XR3 Auxiliary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3SyncPortA">
<summary>XR3 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3SyncPortB">
<summary>XR3 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XR3DrivePulseStream">
<summary>XR3 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4PrimaryFeedback">
<summary>XC4 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4AuxiliaryFeedback">
<summary>XC4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4SyncPortA">
<summary>XC4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4SyncPortB">
<summary>XC4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4DrivePulseStream">
<summary>XC4 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4ePrimaryFeedback">
<summary>XC4e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4eAuxiliaryFeedback">
<summary>XC4e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4eSyncPortA">
<summary>XC4e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4eSyncPortB">
<summary>XC4e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC4eDrivePulseStream">
<summary>XC4e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC6ePrimaryFeedback">
<summary>XC6e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC6eAuxiliaryFeedback">
<summary>XC6e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC6eSyncPortA">
<summary>XC6e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC6eSyncPortB">
<summary>XC6e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC6eDrivePulseStream">
<summary>XC6e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL5ePrimaryFeedback">
<summary>XL5e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL5eAuxiliaryFeedback">
<summary>XL5e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL5eSyncPortA">
<summary>XL5e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL5eSyncPortB">
<summary>XL5e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL5eDrivePulseStream">
<summary>XL5e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC2PrimaryFeedback">
<summary>XC2 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC2AuxiliaryFeedback">
<summary>XC2 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC2DrivePulseStream">
<summary>XC2 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC2ePrimaryFeedback">
<summary>XC2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC2eAuxiliaryFeedback">
<summary>XC2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XC2eDrivePulseStream">
<summary>XC2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL2ePrimaryFeedback">
<summary>XL2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL2eAuxiliaryFeedback">
<summary>XL2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL2eSyncPortA">
<summary>XL2e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL2eSyncPortB">
<summary>XL2e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XL2eDrivePulseStream">
<summary>XL2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4PrimaryFeedbackAxis1">
<summary>XI4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4PrimaryFeedbackAxis2">
<summary>XI4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4PrimaryFeedbackAxis3">
<summary>XI4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4PrimaryFeedbackAxis4">
<summary>XI4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedbackAxis1">
<summary>XI4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedbackAxis2">
<summary>XI4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedbackAxis3">
<summary>XI4 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4AuxiliaryFeedbackAxis4">
<summary>XI4 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4SyncPortA">
<summary>XI4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4SyncPortB">
<summary>XI4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4DrivePulseStreamAxis1">
<summary>XI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4DrivePulseStreamAxis2">
<summary>XI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4DrivePulseStreamAxis3">
<summary>XI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XI4DrivePulseStreamAxis4">
<summary>XI4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4PrimaryFeedback">
<summary>iXC4 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4AuxiliaryFeedback">
<summary>iXC4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4SyncPortA">
<summary>iXC4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4SyncPortB">
<summary>iXC4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4DrivePulseStream">
<summary>iXC4 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4ePrimaryFeedback">
<summary>iXC4e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4eAuxiliaryFeedback">
<summary>iXC4e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4eSyncPortA">
<summary>iXC4e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4eSyncPortB">
<summary>iXC4e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC4eDrivePulseStream">
<summary>iXC4e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC6ePrimaryFeedback">
<summary>iXC6e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC6eAuxiliaryFeedback">
<summary>iXC6e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC6eSyncPortA">
<summary>iXC6e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC6eSyncPortB">
<summary>iXC6e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC6eDrivePulseStream">
<summary>iXC6e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL5ePrimaryFeedback">
<summary>iXL5e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL5eAuxiliaryFeedback">
<summary>iXL5e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL5eSyncPortA">
<summary>iXL5e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL5eSyncPortB">
<summary>iXL5e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL5eDrivePulseStream">
<summary>iXL5e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3PrimaryFeedbackAxis1">
<summary>iXR3 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3PrimaryFeedbackAxis2">
<summary>iXR3 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3PrimaryFeedbackAxis3">
<summary>iXR3 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3PrimaryFeedbackAxis4">
<summary>iXR3 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3PrimaryFeedbackAxis5">
<summary>iXR3 Primary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3PrimaryFeedbackAxis6">
<summary>iXR3 Primary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3AuxiliaryFeedbackAxis1">
<summary>iXR3 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3AuxiliaryFeedbackAxis2">
<summary>iXR3 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3AuxiliaryFeedbackAxis3">
<summary>iXR3 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3AuxiliaryFeedbackAxis4">
<summary>iXR3 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3AuxiliaryFeedbackAxis5">
<summary>iXR3 Auxiliary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3AuxiliaryFeedbackAxis6">
<summary>iXR3 Auxiliary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3SyncPortA">
<summary>iXR3 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3SyncPortB">
<summary>iXR3 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXR3DrivePulseStream">
<summary>iXR3 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GI4DrivePulseStreamAxis1">
<summary>GI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GI4DrivePulseStreamAxis2">
<summary>GI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GI4DrivePulseStreamAxis3">
<summary>GI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC2PrimaryFeedback">
<summary>iXC2 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC2AuxiliaryFeedback">
<summary>iXC2 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC2DrivePulseStream">
<summary>iXC2 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC2ePrimaryFeedback">
<summary>iXC2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC2eAuxiliaryFeedback">
<summary>iXC2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXC2eDrivePulseStream">
<summary>iXC2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL2ePrimaryFeedback">
<summary>iXL2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL2eAuxiliaryFeedback">
<summary>iXL2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL2eSyncPortA">
<summary>iXL2e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL2eSyncPortB">
<summary>iXL2e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXL2eDrivePulseStream">
<summary>iXL2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4PrimaryFeedbackAxis1">
<summary>iXI4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4PrimaryFeedbackAxis2">
<summary>iXI4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4PrimaryFeedbackAxis3">
<summary>iXI4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4PrimaryFeedbackAxis4">
<summary>iXI4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedbackAxis1">
<summary>iXI4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedbackAxis2">
<summary>iXI4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedbackAxis3">
<summary>iXI4 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4AuxiliaryFeedbackAxis4">
<summary>iXI4 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4SyncPortA">
<summary>iXI4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4SyncPortB">
<summary>iXI4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4DrivePulseStreamAxis1">
<summary>iXI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4DrivePulseStreamAxis2">
<summary>iXI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4DrivePulseStreamAxis3">
<summary>iXI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXI4DrivePulseStreamAxis4">
<summary>iXI4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXPrimaryFeedbackAxis1">
<summary>FLEX Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXPrimaryFeedbackAxis2">
<summary>FLEX Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXPrimaryFeedbackAxis3">
<summary>FLEX Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXPrimaryFeedbackAxis4">
<summary>FLEX Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXAuxiliaryFeedbackAxis1">
<summary>FLEX Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXAuxiliaryFeedbackAxis2">
<summary>FLEX Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXAuxiliaryFeedbackAxis3">
<summary>FLEX Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXAuxiliaryFeedbackAxis4">
<summary>FLEX Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXSyncPortA">
<summary>FLEX Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXSyncPortB">
<summary>FLEX Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXDrivePulseStreamAxis1">
<summary>FLEX Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXDrivePulseStreamAxis2">
<summary>FLEX Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXDrivePulseStreamAxis3">
<summary>FLEX Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.FLEXDrivePulseStreamAxis4">
<summary>FLEX Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXPrimaryFeedbackAxis1">
<summary>iFLEX Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXPrimaryFeedbackAxis2">
<summary>iFLEX Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXPrimaryFeedbackAxis3">
<summary>iFLEX Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXPrimaryFeedbackAxis4">
<summary>iFLEX Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXAuxiliaryFeedbackAxis1">
<summary>iFLEX Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXAuxiliaryFeedbackAxis2">
<summary>iFLEX Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXAuxiliaryFeedbackAxis3">
<summary>iFLEX Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXAuxiliaryFeedbackAxis4">
<summary>iFLEX Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXSyncPortA">
<summary>iFLEX Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXSyncPortB">
<summary>iFLEX Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXDrivePulseStreamAxis1">
<summary>iFLEX Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXDrivePulseStreamAxis2">
<summary>iFLEX Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXDrivePulseStreamAxis3">
<summary>iFLEX Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iFLEXDrivePulseStreamAxis4">
<summary>iFLEX Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4PrimaryFeedbackAxis1">
<summary>XA4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4PrimaryFeedbackAxis2">
<summary>XA4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4DrivePulseStreamAxis1">
<summary>XA4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4DrivePulseStreamAxis2">
<summary>XA4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4PrimaryFeedbackAxis1">
<summary>iXA4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4PrimaryFeedbackAxis2">
<summary>iXA4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4DrivePulseStreamAxis1">
<summary>iXA4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4DrivePulseStreamAxis2">
<summary>iXA4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4PrimaryFeedbackAxis3">
<summary>XA4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4PrimaryFeedbackAxis4">
<summary>XA4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4DrivePulseStreamAxis3">
<summary>XA4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4DrivePulseStreamAxis4">
<summary>XA4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4PrimaryFeedbackAxis3">
<summary>iXA4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4PrimaryFeedbackAxis4">
<summary>iXA4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4DrivePulseStreamAxis3">
<summary>iXA4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4DrivePulseStreamAxis4">
<summary>iXA4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4SyncPortA">
<summary>XA4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4SyncPortB">
<summary>XA4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4SyncPortA">
<summary>iXA4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4SyncPortB">
<summary>iXA4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.XA4AuxiliaryFeedback">
<summary>XA4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.iXA4AuxiliaryFeedback">
<summary>iXA4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.PsoTransformationChannel0Output">
<summary>PSO Transformation Module Channel 0 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.PsoTransformationChannel1Output">
<summary>PSO Transformation Module Channel 1 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.PsoTransformationChannel2Output">
<summary>PSO Transformation Module Channel 2 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.PsoTransformationChannel3Output">
<summary>PSO Transformation Module Channel 3 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4PrimaryFeedbackAxis1Encoder1">
<summary>GL4 Primary Feedback Axis 1 Encoder 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoDistanceInput.GL4PrimaryFeedbackAxis2Encoder1">
<summary>GL4 Primary Feedback Axis 2 Encoder 1.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWindowInput">
<summary>
Specifies the PSO window input settings for each drive.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4PrimaryFeedbackAxis1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to GL4PrimaryFeedbackAxis1Encoder0. Use GL4PrimaryFeedbackAxis1Encoder0 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4PrimaryFeedbackAxis2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to GL4PrimaryFeedbackAxis2Encoder0. Use GL4PrimaryFeedbackAxis2Encoder0 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedback1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis1. Use XI4AuxiliaryFeedbackAxis1 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedback2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis2. Use XI4AuxiliaryFeedbackAxis2 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedback3">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis3. Use XI4AuxiliaryFeedbackAxis3 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedback4">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to XI4AuxiliaryFeedbackAxis4. Use XI4AuxiliaryFeedbackAxis4 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedback1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis1. Use iXI4AuxiliaryFeedbackAxis1 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedback2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis2. Use iXI4AuxiliaryFeedbackAxis2 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedback3">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis3. Use iXI4AuxiliaryFeedbackAxis3 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedback4">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to iXI4AuxiliaryFeedbackAxis4. Use iXI4AuxiliaryFeedbackAxis4 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4PrimaryFeedbackAxis1Encoder0">
<summary>GL4 Primary Feedback Axis 1 Encoder 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4PrimaryFeedbackAxis2Encoder0">
<summary>GL4 Primary Feedback Axis 2 Encoder 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4IfovFeedbackAxis1">
<summary>GL4 Primary Feedback Axis 1 with IFOV input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4IfovFeedbackAxis2">
<summary>GL4 Primary Feedback Axis 2 with IFOV input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4AuxiliaryFeedbackAxis1">
<summary>GL4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4AuxiliaryFeedbackAxis2">
<summary>GL4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4SyncPortA">
<summary>GL4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4SyncPortB">
<summary>GL4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4DrivePulseStreamAxis1">
<summary>GL4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4DrivePulseStreamAxis2">
<summary>GL4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL4sPrimaryFeedback">
<summary>XL4s Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL4sAuxiliaryFeedback">
<summary>XL4s Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL4sSyncPortA">
<summary>XL4s Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL4sSyncPortB">
<summary>XL4s Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL4sDrivePulseStream">
<summary>XL4s Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3PrimaryFeedbackAxis1">
<summary>XR3 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3PrimaryFeedbackAxis2">
<summary>XR3 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3PrimaryFeedbackAxis3">
<summary>XR3 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3PrimaryFeedbackAxis4">
<summary>XR3 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3PrimaryFeedbackAxis5">
<summary>XR3 Primary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3PrimaryFeedbackAxis6">
<summary>XR3 Primary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3AuxiliaryFeedbackAxis1">
<summary>XR3 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3AuxiliaryFeedbackAxis2">
<summary>XR3 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3AuxiliaryFeedbackAxis3">
<summary>XR3 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3AuxiliaryFeedbackAxis4">
<summary>XR3 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3AuxiliaryFeedbackAxis5">
<summary>XR3 Auxiliary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3AuxiliaryFeedbackAxis6">
<summary>XR3 Auxiliary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3SyncPortA">
<summary>XR3 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3SyncPortB">
<summary>XR3 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XR3DrivePulseStream">
<summary>XR3 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4PrimaryFeedback">
<summary>XC4 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4AuxiliaryFeedback">
<summary>XC4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4SyncPortA">
<summary>XC4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4SyncPortB">
<summary>XC4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4DrivePulseStream">
<summary>XC4 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4ePrimaryFeedback">
<summary>XC4e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4eAuxiliaryFeedback">
<summary>XC4e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4eSyncPortA">
<summary>XC4e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4eSyncPortB">
<summary>XC4e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC4eDrivePulseStream">
<summary>XC4e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC6ePrimaryFeedback">
<summary>XC6e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC6eAuxiliaryFeedback">
<summary>XC6e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC6eSyncPortA">
<summary>XC6e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC6eSyncPortB">
<summary>XC6e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC6eDrivePulseStream">
<summary>XC6e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL5ePrimaryFeedback">
<summary>XL5e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL5eAuxiliaryFeedback">
<summary>XL5e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL5eSyncPortA">
<summary>XL5e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL5eSyncPortB">
<summary>XL5e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL5eDrivePulseStream">
<summary>XL5e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC2PrimaryFeedback">
<summary>XC2 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC2AuxiliaryFeedback">
<summary>XC2 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC2DrivePulseStream">
<summary>XC2 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC2ePrimaryFeedback">
<summary>XC2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC2eAuxiliaryFeedback">
<summary>XC2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XC2eDrivePulseStream">
<summary>XC2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL2ePrimaryFeedback">
<summary>XL2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL2eAuxiliaryFeedback">
<summary>XL2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL2eSyncPortA">
<summary>XL2e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL2eSyncPortB">
<summary>XL2e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XL2eDrivePulseStream">
<summary>XL2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4PrimaryFeedbackAxis1">
<summary>XI4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4PrimaryFeedbackAxis2">
<summary>XI4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4PrimaryFeedbackAxis3">
<summary>XI4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4PrimaryFeedbackAxis4">
<summary>XI4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedbackAxis1">
<summary>XI4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedbackAxis2">
<summary>XI4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedbackAxis3">
<summary>XI4 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4AuxiliaryFeedbackAxis4">
<summary>XI4 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4SyncPortA">
<summary>XI4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4SyncPortB">
<summary>XI4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4DrivePulseStreamAxis1">
<summary>XI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4DrivePulseStreamAxis2">
<summary>XI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4DrivePulseStreamAxis3">
<summary>XI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XI4DrivePulseStreamAxis4">
<summary>XI4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4PrimaryFeedback">
<summary>iXC4 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4AuxiliaryFeedback">
<summary>iXC4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4SyncPortA">
<summary>iXC4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4SyncPortB">
<summary>iXC4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4DrivePulseStream">
<summary>iXC4 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4ePrimaryFeedback">
<summary>iXC4e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4eAuxiliaryFeedback">
<summary>iXC4e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4eSyncPortA">
<summary>iXC4e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4eSyncPortB">
<summary>iXC4e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC4eDrivePulseStream">
<summary>iXC4e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC6ePrimaryFeedback">
<summary>iXC6e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC6eAuxiliaryFeedback">
<summary>iXC6e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC6eSyncPortA">
<summary>iXC6e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC6eSyncPortB">
<summary>iXC6e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC6eDrivePulseStream">
<summary>iXC6e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL5ePrimaryFeedback">
<summary>iXL5e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL5eAuxiliaryFeedback">
<summary>iXL5e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL5eSyncPortA">
<summary>iXL5e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL5eSyncPortB">
<summary>iXL5e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL5eDrivePulseStream">
<summary>iXL5e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3PrimaryFeedbackAxis1">
<summary>iXR3 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3PrimaryFeedbackAxis2">
<summary>iXR3 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3PrimaryFeedbackAxis3">
<summary>iXR3 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3PrimaryFeedbackAxis4">
<summary>iXR3 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3PrimaryFeedbackAxis5">
<summary>iXR3 Primary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3PrimaryFeedbackAxis6">
<summary>iXR3 Primary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3AuxiliaryFeedbackAxis1">
<summary>iXR3 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3AuxiliaryFeedbackAxis2">
<summary>iXR3 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3AuxiliaryFeedbackAxis3">
<summary>iXR3 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3AuxiliaryFeedbackAxis4">
<summary>iXR3 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3AuxiliaryFeedbackAxis5">
<summary>iXR3 Auxiliary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3AuxiliaryFeedbackAxis6">
<summary>iXR3 Auxiliary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3SyncPortA">
<summary>iXR3 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3SyncPortB">
<summary>iXR3 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXR3DrivePulseStream">
<summary>iXR3 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GI4DrivePulseStreamAxis1">
<summary>GI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GI4DrivePulseStreamAxis2">
<summary>GI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GI4DrivePulseStreamAxis3">
<summary>GI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC2PrimaryFeedback">
<summary>iXC2 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC2AuxiliaryFeedback">
<summary>iXC2 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC2DrivePulseStream">
<summary>iXC2 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC2ePrimaryFeedback">
<summary>iXC2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC2eAuxiliaryFeedback">
<summary>iXC2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXC2eDrivePulseStream">
<summary>iXC2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL2ePrimaryFeedback">
<summary>iXL2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL2eAuxiliaryFeedback">
<summary>iXL2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL2eSyncPortA">
<summary>iXL2e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL2eSyncPortB">
<summary>iXL2e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXL2eDrivePulseStream">
<summary>iXL2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4PrimaryFeedbackAxis1">
<summary>iXI4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4PrimaryFeedbackAxis2">
<summary>iXI4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4PrimaryFeedbackAxis3">
<summary>iXI4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4PrimaryFeedbackAxis4">
<summary>iXI4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedbackAxis1">
<summary>iXI4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedbackAxis2">
<summary>iXI4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedbackAxis3">
<summary>iXI4 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4AuxiliaryFeedbackAxis4">
<summary>iXI4 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4SyncPortA">
<summary>iXI4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4SyncPortB">
<summary>iXI4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4DrivePulseStreamAxis1">
<summary>iXI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4DrivePulseStreamAxis2">
<summary>iXI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4DrivePulseStreamAxis3">
<summary>iXI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXI4DrivePulseStreamAxis4">
<summary>iXI4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXPrimaryFeedbackAxis1">
<summary>FLEX Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXPrimaryFeedbackAxis2">
<summary>FLEX Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXPrimaryFeedbackAxis3">
<summary>FLEX Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXPrimaryFeedbackAxis4">
<summary>FLEX Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXAuxiliaryFeedbackAxis1">
<summary>FLEX Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXAuxiliaryFeedbackAxis2">
<summary>FLEX Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXAuxiliaryFeedbackAxis3">
<summary>FLEX Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXAuxiliaryFeedbackAxis4">
<summary>FLEX Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXSyncPortA">
<summary>FLEX Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXSyncPortB">
<summary>FLEX Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXDrivePulseStreamAxis1">
<summary>FLEX Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXDrivePulseStreamAxis2">
<summary>FLEX Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXDrivePulseStreamAxis3">
<summary>FLEX Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.FLEXDrivePulseStreamAxis4">
<summary>FLEX Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXPrimaryFeedbackAxis1">
<summary>iFLEX Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXPrimaryFeedbackAxis2">
<summary>iFLEX Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXPrimaryFeedbackAxis3">
<summary>iFLEX Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXPrimaryFeedbackAxis4">
<summary>iFLEX Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXAuxiliaryFeedbackAxis1">
<summary>iFLEX Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXAuxiliaryFeedbackAxis2">
<summary>iFLEX Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXAuxiliaryFeedbackAxis3">
<summary>iFLEX Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXAuxiliaryFeedbackAxis4">
<summary>iFLEX Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXSyncPortA">
<summary>iFLEX Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXSyncPortB">
<summary>iFLEX Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXDrivePulseStreamAxis1">
<summary>iFLEX Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXDrivePulseStreamAxis2">
<summary>iFLEX Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXDrivePulseStreamAxis3">
<summary>iFLEX Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iFLEXDrivePulseStreamAxis4">
<summary>iFLEX Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4PrimaryFeedbackAxis1">
<summary>XA4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4PrimaryFeedbackAxis2">
<summary>XA4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4DrivePulseStreamAxis1">
<summary>XA4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4DrivePulseStreamAxis2">
<summary>XA4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4PrimaryFeedbackAxis1">
<summary>iXA4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4PrimaryFeedbackAxis2">
<summary>iXA4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4DrivePulseStreamAxis1">
<summary>iXA4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4DrivePulseStreamAxis2">
<summary>iXA4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4PrimaryFeedbackAxis3">
<summary>XA4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4PrimaryFeedbackAxis4">
<summary>XA4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4DrivePulseStreamAxis3">
<summary>XA4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4DrivePulseStreamAxis4">
<summary>XA4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4PrimaryFeedbackAxis3">
<summary>iXA4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4PrimaryFeedbackAxis4">
<summary>iXA4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4DrivePulseStreamAxis3">
<summary>iXA4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4DrivePulseStreamAxis4">
<summary>iXA4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4SyncPortA">
<summary>XA4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4SyncPortB">
<summary>XA4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4SyncPortA">
<summary>iXA4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4SyncPortB">
<summary>iXA4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.XA4AuxiliaryFeedback">
<summary>XA4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.iXA4AuxiliaryFeedback">
<summary>iXA4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.PsoTransformationChannel0Output">
<summary>PSO Transformation Module Channel 0 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.PsoTransformationChannel1Output">
<summary>PSO Transformation Module Channel 1 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.PsoTransformationChannel2Output">
<summary>PSO Transformation Module Channel 2 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.PsoTransformationChannel3Output">
<summary>PSO Transformation Module Channel 3 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4PrimaryFeedbackAxis1Encoder1">
<summary>GL4 Primary Feedback Axis 1 Encoder 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWindowInput.GL4PrimaryFeedbackAxis2Encoder1">
<summary>GL4 Primary Feedback Axis 2 Encoder 1.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoTransformationInput">
<summary>
Specifies the PSO transformation input settings for each drive.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4PrimaryFeedbackAxis1Encoder0">
<summary>GL4 Primary Feedback Axis 1 Encoder 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4PrimaryFeedbackAxis2Encoder0">
<summary>GL4 Primary Feedback Axis 2 Encoder 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4IfovFeedbackAxis1">
<summary>GL4 Primary Feedback Axis 1 with IFOV input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4IfovFeedbackAxis2">
<summary>GL4 Primary Feedback Axis 2 with IFOV input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4AuxiliaryFeedbackAxis1">
<summary>GL4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4AuxiliaryFeedbackAxis2">
<summary>GL4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4SyncPortA">
<summary>GL4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4SyncPortB">
<summary>GL4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4DrivePulseStreamAxis1">
<summary>GL4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4DrivePulseStreamAxis2">
<summary>GL4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL4sPrimaryFeedback">
<summary>XL4s Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL4sAuxiliaryFeedback">
<summary>XL4s Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL4sSyncPortA">
<summary>XL4s Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL4sSyncPortB">
<summary>XL4s Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL4sDrivePulseStream">
<summary>XL4s Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3PrimaryFeedbackAxis1">
<summary>XR3 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3PrimaryFeedbackAxis2">
<summary>XR3 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3PrimaryFeedbackAxis3">
<summary>XR3 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3PrimaryFeedbackAxis4">
<summary>XR3 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3PrimaryFeedbackAxis5">
<summary>XR3 Primary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3PrimaryFeedbackAxis6">
<summary>XR3 Primary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3AuxiliaryFeedbackAxis1">
<summary>XR3 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3AuxiliaryFeedbackAxis2">
<summary>XR3 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3AuxiliaryFeedbackAxis3">
<summary>XR3 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3AuxiliaryFeedbackAxis4">
<summary>XR3 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3AuxiliaryFeedbackAxis5">
<summary>XR3 Auxiliary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3AuxiliaryFeedbackAxis6">
<summary>XR3 Auxiliary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3SyncPortA">
<summary>XR3 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3SyncPortB">
<summary>XR3 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XR3DrivePulseStream">
<summary>XR3 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4PrimaryFeedback">
<summary>XC4 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4AuxiliaryFeedback">
<summary>XC4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4SyncPortA">
<summary>XC4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4SyncPortB">
<summary>XC4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4DrivePulseStream">
<summary>XC4 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4ePrimaryFeedback">
<summary>XC4e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4eAuxiliaryFeedback">
<summary>XC4e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4eSyncPortA">
<summary>XC4e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4eSyncPortB">
<summary>XC4e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC4eDrivePulseStream">
<summary>XC4e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC6ePrimaryFeedback">
<summary>XC6e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC6eAuxiliaryFeedback">
<summary>XC6e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC6eSyncPortA">
<summary>XC6e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC6eSyncPortB">
<summary>XC6e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC6eDrivePulseStream">
<summary>XC6e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL5ePrimaryFeedback">
<summary>XL5e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL5eAuxiliaryFeedback">
<summary>XL5e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL5eSyncPortA">
<summary>XL5e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL5eSyncPortB">
<summary>XL5e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL5eDrivePulseStream">
<summary>XL5e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC2PrimaryFeedback">
<summary>XC2 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC2AuxiliaryFeedback">
<summary>XC2 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC2DrivePulseStream">
<summary>XC2 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC2ePrimaryFeedback">
<summary>XC2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC2eAuxiliaryFeedback">
<summary>XC2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XC2eDrivePulseStream">
<summary>XC2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL2ePrimaryFeedback">
<summary>XL2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL2eAuxiliaryFeedback">
<summary>XL2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL2eSyncPortA">
<summary>XL2e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL2eSyncPortB">
<summary>XL2e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XL2eDrivePulseStream">
<summary>XL2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4PrimaryFeedbackAxis1">
<summary>XI4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4PrimaryFeedbackAxis2">
<summary>XI4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4PrimaryFeedbackAxis3">
<summary>XI4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4PrimaryFeedbackAxis4">
<summary>XI4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4AuxiliaryFeedbackAxis1">
<summary>XI4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4AuxiliaryFeedbackAxis2">
<summary>XI4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4AuxiliaryFeedbackAxis3">
<summary>XI4 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4AuxiliaryFeedbackAxis4">
<summary>XI4 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4SyncPortA">
<summary>XI4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4SyncPortB">
<summary>XI4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4DrivePulseStreamAxis1">
<summary>XI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4DrivePulseStreamAxis2">
<summary>XI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4DrivePulseStreamAxis3">
<summary>XI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XI4DrivePulseStreamAxis4">
<summary>XI4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4PrimaryFeedback">
<summary>iXC4 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4AuxiliaryFeedback">
<summary>iXC4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4SyncPortA">
<summary>iXC4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4SyncPortB">
<summary>iXC4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4DrivePulseStream">
<summary>iXC4 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4ePrimaryFeedback">
<summary>iXC4e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4eAuxiliaryFeedback">
<summary>iXC4e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4eSyncPortA">
<summary>iXC4e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4eSyncPortB">
<summary>iXC4e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC4eDrivePulseStream">
<summary>iXC4e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC6ePrimaryFeedback">
<summary>iXC6e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC6eAuxiliaryFeedback">
<summary>iXC6e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC6eSyncPortA">
<summary>iXC6e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC6eSyncPortB">
<summary>iXC6e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC6eDrivePulseStream">
<summary>iXC6e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL5ePrimaryFeedback">
<summary>iXL5e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL5eAuxiliaryFeedback">
<summary>iXL5e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL5eSyncPortA">
<summary>iXL5e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL5eSyncPortB">
<summary>iXL5e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL5eDrivePulseStream">
<summary>iXL5e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3PrimaryFeedbackAxis1">
<summary>iXR3 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3PrimaryFeedbackAxis2">
<summary>iXR3 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3PrimaryFeedbackAxis3">
<summary>iXR3 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3PrimaryFeedbackAxis4">
<summary>iXR3 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3PrimaryFeedbackAxis5">
<summary>iXR3 Primary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3PrimaryFeedbackAxis6">
<summary>iXR3 Primary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3AuxiliaryFeedbackAxis1">
<summary>iXR3 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3AuxiliaryFeedbackAxis2">
<summary>iXR3 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3AuxiliaryFeedbackAxis3">
<summary>iXR3 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3AuxiliaryFeedbackAxis4">
<summary>iXR3 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3AuxiliaryFeedbackAxis5">
<summary>iXR3 Auxiliary Feedback Axis 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3AuxiliaryFeedbackAxis6">
<summary>iXR3 Auxiliary Feedback Axis 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3SyncPortA">
<summary>iXR3 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3SyncPortB">
<summary>iXR3 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXR3DrivePulseStream">
<summary>iXR3 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GI4DrivePulseStreamAxis1">
<summary>GI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GI4DrivePulseStreamAxis2">
<summary>GI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GI4DrivePulseStreamAxis3">
<summary>GI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC2PrimaryFeedback">
<summary>iXC2 Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC2AuxiliaryFeedback">
<summary>iXC2 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC2DrivePulseStream">
<summary>iXC2 Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC2ePrimaryFeedback">
<summary>iXC2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC2eAuxiliaryFeedback">
<summary>iXC2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXC2eDrivePulseStream">
<summary>iXC2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL2ePrimaryFeedback">
<summary>iXL2e Primary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL2eAuxiliaryFeedback">
<summary>iXL2e Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL2eSyncPortA">
<summary>iXL2e Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL2eSyncPortB">
<summary>iXL2e Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXL2eDrivePulseStream">
<summary>iXL2e Drive Pulse Stream.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4PrimaryFeedbackAxis1">
<summary>iXI4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4PrimaryFeedbackAxis2">
<summary>iXI4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4PrimaryFeedbackAxis3">
<summary>iXI4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4PrimaryFeedbackAxis4">
<summary>iXI4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4AuxiliaryFeedbackAxis1">
<summary>iXI4 Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4AuxiliaryFeedbackAxis2">
<summary>iXI4 Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4AuxiliaryFeedbackAxis3">
<summary>iXI4 Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4AuxiliaryFeedbackAxis4">
<summary>iXI4 Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4SyncPortA">
<summary>iXI4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4SyncPortB">
<summary>iXI4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4DrivePulseStreamAxis1">
<summary>iXI4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4DrivePulseStreamAxis2">
<summary>iXI4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4DrivePulseStreamAxis3">
<summary>iXI4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXI4DrivePulseStreamAxis4">
<summary>iXI4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXPrimaryFeedbackAxis1">
<summary>FLEX Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXPrimaryFeedbackAxis2">
<summary>FLEX Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXPrimaryFeedbackAxis3">
<summary>FLEX Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXPrimaryFeedbackAxis4">
<summary>FLEX Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXAuxiliaryFeedbackAxis1">
<summary>FLEX Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXAuxiliaryFeedbackAxis2">
<summary>FLEX Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXAuxiliaryFeedbackAxis3">
<summary>FLEX Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXAuxiliaryFeedbackAxis4">
<summary>FLEX Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXSyncPortA">
<summary>FLEX Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXSyncPortB">
<summary>FLEX Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXDrivePulseStreamAxis1">
<summary>FLEX Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXDrivePulseStreamAxis2">
<summary>FLEX Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXDrivePulseStreamAxis3">
<summary>FLEX Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.FLEXDrivePulseStreamAxis4">
<summary>FLEX Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXPrimaryFeedbackAxis1">
<summary>iFLEX Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXPrimaryFeedbackAxis2">
<summary>iFLEX Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXPrimaryFeedbackAxis3">
<summary>iFLEX Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXPrimaryFeedbackAxis4">
<summary>iFLEX Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXAuxiliaryFeedbackAxis1">
<summary>iFLEX Auxiliary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXAuxiliaryFeedbackAxis2">
<summary>iFLEX Auxiliary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXAuxiliaryFeedbackAxis3">
<summary>iFLEX Auxiliary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXAuxiliaryFeedbackAxis4">
<summary>iFLEX Auxiliary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXSyncPortA">
<summary>iFLEX Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXSyncPortB">
<summary>iFLEX Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXDrivePulseStreamAxis1">
<summary>iFLEX Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXDrivePulseStreamAxis2">
<summary>iFLEX Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXDrivePulseStreamAxis3">
<summary>iFLEX Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iFLEXDrivePulseStreamAxis4">
<summary>iFLEX Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4PrimaryFeedbackAxis1">
<summary>XA4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4PrimaryFeedbackAxis2">
<summary>XA4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4DrivePulseStreamAxis1">
<summary>XA4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4DrivePulseStreamAxis2">
<summary>XA4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4PrimaryFeedbackAxis1">
<summary>iXA4 Primary Feedback Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4PrimaryFeedbackAxis2">
<summary>iXA4 Primary Feedback Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4DrivePulseStreamAxis1">
<summary>iXA4 Drive Pulse Stream Axis 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4DrivePulseStreamAxis2">
<summary>iXA4 Drive Pulse Stream Axis 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4PrimaryFeedbackAxis3">
<summary>XA4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4PrimaryFeedbackAxis4">
<summary>XA4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4DrivePulseStreamAxis3">
<summary>XA4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4DrivePulseStreamAxis4">
<summary>XA4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4PrimaryFeedbackAxis3">
<summary>iXA4 Primary Feedback Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4PrimaryFeedbackAxis4">
<summary>iXA4 Primary Feedback Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4DrivePulseStreamAxis3">
<summary>iXA4 Drive Pulse Stream Axis 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4DrivePulseStreamAxis4">
<summary>iXA4 Drive Pulse Stream Axis 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4SyncPortA">
<summary>XA4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4SyncPortB">
<summary>XA4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4SyncPortA">
<summary>iXA4 Sync Port A.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4SyncPortB">
<summary>iXA4 Sync Port B.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.XA4AuxiliaryFeedback">
<summary>XA4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.iXA4AuxiliaryFeedback">
<summary>iXA4 Auxiliary Feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.PsoTransformationChannel0Output">
<summary>PSO Transformation Module Channel 0 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.PsoTransformationChannel1Output">
<summary>PSO Transformation Module Channel 1 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.PsoTransformationChannel2Output">
<summary>PSO Transformation Module Channel 2 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.PsoTransformationChannel3Output">
<summary>PSO Transformation Module Channel 3 Output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4PrimaryFeedbackAxis1Encoder1">
<summary>GL4 Primary Feedback Axis 1 Encoder 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationInput.GL4PrimaryFeedbackAxis2Encoder1">
<summary>GL4 Primary Feedback Axis 2 Encoder 1.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoOutputPin">
<summary>
Specifies the PSO output pin settings for each drive.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.GL4None">
<summary>GL4 None (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.GL4LaserOutput0">
<summary>GL4 Laser Output 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XL4sNone">
<summary>XL4s None (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XL4sLaserOutput0">
<summary>XL4s Laser Output 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XR3None">
<summary>XR3 None (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XR3PsoOutput1">
<summary>XR3 PSO Output 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XR3PsoOutput2">
<summary>XR3 PSO Output 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XR3PsoOutput3">
<summary>XR3 PSO Output 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC4DedicatedOutput">
<summary>XC4 Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC4AuxiliaryMarkerDifferential">
<summary>XC4 Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC4AuxiliaryMarkerSingleEnded">
<summary>XC4 Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC4eDedicatedOutput">
<summary>XC4e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC4eAuxiliaryMarkerDifferential">
<summary>XC4e Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC4eAuxiliaryMarkerSingleEnded">
<summary>XC4e Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC6eDedicatedOutput">
<summary>XC6e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC6eAuxiliaryMarkerDifferential">
<summary>XC6e Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC6eAuxiliaryMarkerSingleEnded">
<summary>XC6e Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XL5eDedicatedOutput">
<summary>XL5e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XL5eAuxiliaryMarkerDifferential">
<summary>XL5e Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XL5eAuxiliaryMarkerSingleEnded">
<summary>XL5e Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC2DedicatedOutput">
<summary>XC2 Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XC2eDedicatedOutput">
<summary>XC2e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XL2eDedicatedOutput">
<summary>XL2e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XI4DedicatedOutput">
<summary>XI4 Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC4DedicatedOutput">
<summary>iXC4 Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC4AuxiliaryMarkerDifferential">
<summary>iXC4 Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC4AuxiliaryMarkerSingleEnded">
<summary>iXC4 Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC4eDedicatedOutput">
<summary>iXC4e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC4eAuxiliaryMarkerDifferential">
<summary>iXC4e Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC4eAuxiliaryMarkerSingleEnded">
<summary>iXC4e Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC6eDedicatedOutput">
<summary>iXC6e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC6eAuxiliaryMarkerDifferential">
<summary>iXC6e Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC6eAuxiliaryMarkerSingleEnded">
<summary>iXC6e Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXL5eDedicatedOutput">
<summary>iXL5e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXL5eAuxiliaryMarkerDifferential">
<summary>iXL5e Auxiliary Marker (Differential mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXL5eAuxiliaryMarkerSingleEnded">
<summary>iXL5e Auxiliary Marker (Single-ended mode).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXR3None">
<summary>iXR3 None (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXR3PsoOutput1">
<summary>iXR3 PSO Output 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXR3PsoOutput2">
<summary>iXR3 PSO Output 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXR3PsoOutput3">
<summary>iXR3 PSO Output 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.GI4None">
<summary>GI4 None (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.GI4LaserOutput0">
<summary>GI4 Laser Output 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC2DedicatedOutput">
<summary>iXC2 Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXC2eDedicatedOutput">
<summary>iXC2e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXL2eDedicatedOutput">
<summary>iXL2e Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXI4DedicatedOutput">
<summary>iXI4 Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.FLEXDedicatedOutput">
<summary>FLEX Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iFLEXDedicatedOutput">
<summary>iFLEX Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.XA4DedicatedOutput">
<summary>XA4 Dedicated Output (default).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOutputPin.iXA4DedicatedOutput">
<summary>iXA4 Dedicated Output (default).</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoTransformationFunction">
<summary>
Selects the function for the PSO input transformation.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationFunction.None">
<summary>No operation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationFunction.Average">
<summary>Average.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationFunction.Sum">
<summary>Sum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoTransformationFunction.Difference">
<summary>Difference.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AutofocusFocusMode">
<summary>
Selects whether autofocus will run in continuous focus mode or single focus mode.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AutofocusFocusMode.Continuous">
<summary>The autofocus routine runs continuously until you turn off autofocus.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AutofocusFocusMode.Single">
<summary>The autofocus routine automatically turns off when the input that is specified by the AutofocusInput parameter is within the specified deadband of the AutofocusDeadband parameter.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem">
<summary>
A controller signal used for analog output axis tracking.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.PositionCommand">
<summary>The analog output will track the Position Command item in user units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.PositionFeedback">
<summary>The analog output will track the Position Feedback item in user units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.VelocityCommand">
<summary>The analog output will track the Velocity Command item in user units per second.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.VelocityFeedback">
<summary>The analog output will track the Velocity Feedback item in user units per second.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.CurrentCommand">
<summary>The analog output will track the Current Command item in amps.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.CurrentFeedback">
<summary>The analog output will track the Current Feedback item in amps.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.AccelerationCommand">
<summary>The analog output will track the Acceleration Command item in user units per second squared.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.PositionError">
<summary>The analog output will track the Position Error item in user units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.PiezoVoltageCommand">
<summary>The analog output will track the Piezo Voltage Command item in volts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputAxisTrackingItem.VectorSpeedCommand">
<summary>The analog output will track the vector speed in user units per second.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem">
<summary>
A controller signal used for analog output vector tracking.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem.PositionCommand">
<summary>The analog output will track the Position Command item in primary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem.PositionFeedback">
<summary>The analog output will track the Position Feedback item in primary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem.VelocityCommand">
<summary>The analog output will track the Velocity Command item in primary units per second.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AnalogOutputVectorTrackingItem.VelocityFeedback">
<summary>The analog output will track the Velocity Feedback item in primary units per second.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ModbusRegisterDataType">
<summary>
Specifies the type of the Modbus register.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.Bit">
<summary>Represents a 1-bit boolean Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.Float32">
<summary>Represents a 32-bit floating-point Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.Float64">
<summary>Represents a 64-bit floating-point Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.UInt8">
<summary>Represents an 8-bit unsigned integer Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.UInt16">
<summary>Represents a 16-bit unsigned integer Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.UInt32">
<summary>Represents a 32-bit unsigned integer Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.Int8">
<summary>Represents an 8-bit signed integer Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.Int16">
<summary>Represents a 16-bit signed integer Modbus register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusRegisterDataType.Int32">
<summary>Represents a 32-bit signed integer Modbus register value.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EthercatRegisterDataType">
<summary>
Specifies the type of the EtherCAT register.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.Bit">
<summary>Represents a 1-bit boolean EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.Float32">
<summary>Represents a 32-bit floating-point EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.Float64">
<summary>Represents a 64-bit floating-point EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.UInt8">
<summary>Represents an 8-bit unsigned integer EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.UInt16">
<summary>Represents a 16-bit unsigned integer EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.UInt32">
<summary>Represents a 32-bit unsigned integer EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.Int8">
<summary>Represents an 8-bit signed integer EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.Int16">
<summary>Represents a 16-bit signed integer EtherCAT register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatRegisterDataType.Int32">
<summary>Represents a 32-bit signed integer EtherCAT register value.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType">
<summary>
Specifies the type of the EtherNet/IP register.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.Bit">
<summary>Represents a 1-bit boolean EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.Float32">
<summary>Represents a 32-bit floating-point EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.Float64">
<summary>Represents a 64-bit floating-point EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.UInt8">
<summary>Represents an 8-bit unsigned integer EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.UInt16">
<summary>Represents a 16-bit unsigned integer EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.UInt32">
<summary>Represents a 32-bit unsigned integer EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.Int8">
<summary>Represents an 8-bit signed integer EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.Int16">
<summary>Represents a 16-bit signed integer EtherNet/IP register value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpRegisterDataType.Int32">
<summary>Represents a 32-bit signed integer EtherNet/IP register value.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionFileType">
<summary>
Represents a data collection file type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFileType.Plt">
<summary>The Automation1 Plot file type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFileType.Csv">
<summary>The CSV file type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFileType.Json">
<summary>The JSON file type.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FrequencyResponseFileType">
<summary>
Represents a frequency response file type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FrequencyResponseFileType.Fr">
<summary>The Automation1 Frequency Response file type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FrequencyResponseFileType.Csv">
<summary>The CSV file type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FrequencyResponseFileType.Json">
<summary>The JSON file type.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.__GCodeMotion">
<summary>
Represents a G-code motion type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Linear_G0">
<summary>Linear rapid motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Linear_G1">
<summary>Linear coordinated motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Linear_UseModal">
<summary>Linear motion using the current modal setting.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Circular0_G2">
<summary>Circular clockwise motion in the first coordinate system.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Circular0_G3">
<summary>Circular counterclockwise motion in the first coordinate system.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Circular0_UseModal">
<summary>Circular motion in the first coordinate system using the current modal setting.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Circular1_G12">
<summary>Circular clockwise motion in the second coordinate system.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Circular1_G13">
<summary>Circular counterclockwise motion in the second coordinate system.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeMotion.Circular1_UseModal">
<summary>Circular motion in the second coordinate system using the current modal setting.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.__GCodeLetter">
<summary>
Represents a G-code letter.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._E">
<summary>The E letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._F">
<summary>The F letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._G">
<summary>The G letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._I0">
<summary>The first I letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._I1">
<summary>The second I letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._J0">
<summary>The first J letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._J1">
<summary>The second J letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._K0">
<summary>The first K letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._K1">
<summary>The second K letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._P0">
<summary>The first P letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._P1">
<summary>The second P letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._Q0">
<summary>The first Q letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._Q1">
<summary>The second Q letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._R0">
<summary>The first R letter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.__GCodeLetter._R1">
<summary>The second R letter.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskState">
<summary>
This value represents information about the state of this task.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.Unavailable">
<summary>The Controller Plus Option is not installed. You cannot use this task.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.Inactive">
<summary>This task was disabled by the EnabledTasks parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.Idle">
<summary>No program is associated or running.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.ProgramReady">
<summary>A program is associated but not running.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.ProgramRunning">
<summary>A program is associated and running.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.ProgramFeedhold">
<summary>A program is associated, was run, and feedhold is active. This state is active from the moment the motion begins to decelerate due to a feedhold until the moment the motion begins to accelerate back to speed due to a feedhold release.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.ProgramPaused">
<summary>A program is associated, was run, and was paused.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.ProgramComplete">
<summary>A program is associated, was run, and completed.(1)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.Error">
<summary>A task error occurred on this task.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.QueueRunning">
<summary>This task has an active command queue that is currently running.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskState.QueuePaused">
<summary>This task has an active command queue that is currently paused.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MotorType">
<summary>
Represents the motor type
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.ACBrushlessLinear">
<summary>AC Brushless Linear</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.ACBrushlessRotary">
<summary>AC Brushless Rotary</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.DCBrush">
<summary>DC Brush</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.StepperMotor">
<summary>Stepper Motor</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.ThreePhaseStepper">
<summary>Three Phase Stepper</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.TwoPhaseACBrushless">
<summary>2-Phase AC Brushless</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.PiezoActuator">
<summary>Piezo Actuator</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotorType.Galvo">
<summary>Galvo</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HomeType">
<summary>
Represents the home type
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HomeType.PastLimittoMarker">
<summary>Home Past Limit to Marker</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HomeType.ToLimitandReversetoMarker">
<summary>Home to Limit and Reverse to Marker</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HomeType.ToMarkerOnly">
<summary>Home to Marker Only</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HomeType.ToLimitOnly">
<summary>Home to Limit Only</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HomeType.AtCurrentPosition">
<summary>Home at Current Position</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HomeType.AtCurrentPositionFeedback">
<summary>Home at Current Position Feedback</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HomeType.AtCurrentPositionAbsolute">
<summary>Home at Current Position Absolute</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PrimaryFeedbackType">
<summary>
Represents the feedback type on the primary connector
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.None">
<summary>None</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.IncrementalEncoderSquareWave">
<summary>Incremental Encoder (Square-Wave)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.IncrementalEncoderSineWave">
<summary>Incremental Encoder (Sine-Wave)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.AbsoluteEncoderEnDatwithSineWaveIncremental">
<summary>Absolute Encoder (EnDat with Sine-Wave Incremental)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.AbsoluteEncoderEnDat">
<summary>Absolute Encoder (EnDat)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.HallEffectSwitches">
<summary>Hall-Effect Switches</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.AbsoluteEncoderSSI">
<summary>Absolute Encoder (SSI)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.AbsoluteEncoderBiSS">
<summary>Absolute Encoder (BiSS)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.AbsoluteEncoderBiSSwithSineWaveIncremental">
<summary>Absolute Encoder (BiSS with Sine-Wave Incremental)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackType.CapacitanceSensor">
<summary>Capacitance Sensor</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AuxiliaryFeedbackType">
<summary>
Represents the feedback type on the auxiliary connector
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackType.None">
<summary>None</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackType.IncrementalEncoderSquareWave">
<summary>Incremental Encoder (Square-Wave)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackType.IncrementalEncoderSineWave">
<summary>Incremental Encoder (Sine-Wave)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackType.AbsoluteEncoderEnDat">
<summary>Absolute Encoder (EnDat)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackType.AbsoluteEncoderSSI">
<summary>Absolute Encoder (SSI)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackType.AbsoluteEncoderBiSS">
<summary>Absolute Encoder (BiSS)</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.UnitsType">
<summary>
Represents the units types
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.UnitsType.Secondary">
<summary>Secondary units</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.UnitsType.Primary">
<summary>Primary units</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionTriggerType">
<summary>
Represents the types of data collection trigger types
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionTriggerType.Immediate">
<summary>Starts data collection immediately</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionTriggerType.Continuous">
<summary>Starts continuous data collection</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionTriggerType.ScopeTrig">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionFlags">
<summary>
Specifies the status flags of data collection
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.Initializing">
<summary>Data collection is initializing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.Triggered">
<summary>Data collection was triggered.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.Done">
<summary>Data collection is done.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.Overflow">
<summary>Data collection buffer overflowed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.SampleTrigger">
<summary>Sample trigger mode is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.FirstMillisecond">
<summary>Data collection is collecting the first millisecond of data.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.ContinuousMode">
<summary>Continuous data collection mode is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.IsScopeTrigInitiated">
<summary>Data collection was started by an AppDataCollectionSnapshot.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionFlags.UploadingDriveBuffers">
<summary>Data is being uploaded to the SMC from the drive buffers.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PiezoDefaultServoState">
<summary>
Represents the piezo default servo state.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PiezoDefaultServoState.Off">
<summary>Servo Off</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PiezoDefaultServoState.On">
<summary>Servo On</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Bits2">
<summary>
A mask enum for 2-bit values.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits2.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits2.Bit0">
<summary>Bit 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits2.Bit1">
<summary>Bit 1.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Bits32">
<summary>
A mask enum for 32-bit values.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit0">
<summary>Bit 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit1">
<summary>Bit 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit2">
<summary>Bit 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit3">
<summary>Bit 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit4">
<summary>Bit 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit5">
<summary>Bit 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit6">
<summary>Bit 6.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit7">
<summary>Bit 7.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit8">
<summary>Bit 8.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit9">
<summary>Bit 9.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit10">
<summary>Bit 10.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit11">
<summary>Bit 11.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit12">
<summary>Bit 12.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit13">
<summary>Bit 13.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit14">
<summary>Bit 14.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit15">
<summary>Bit 15.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit16">
<summary>Bit 16.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit17">
<summary>Bit 17.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit18">
<summary>Bit 18.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit19">
<summary>Bit 19.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit20">
<summary>Bit 20.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit21">
<summary>Bit 21.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit22">
<summary>Bit 22.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit23">
<summary>Bit 23.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit24">
<summary>Bit 24.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit25">
<summary>Bit 25.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit26">
<summary>Bit 26.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit27">
<summary>Bit 27.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit28">
<summary>Bit 28.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit29">
<summary>Bit 29.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit30">
<summary>Bit 30.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Bits32.Bit31">
<summary>Bit 31.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoStatus">
<summary>
Represents PSO status
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.DistanceFifoEmpty">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been obsoleted by DistanceArrayDepleted. Use DistanceArrayDepleted instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.LaserFifoEmpty">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been obsoleted by WaveformArrayDepleted. Use WaveformArrayDepleted instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.Window1FifoEmpty">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been obsoleted by Window1ArrayDepleted. Use Window1ArrayDepleted instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.Window2FifoEmpty">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been obsoleted by Window2ArrayDepleted. Use Window2ArrayDepleted instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.FiringActivePulseGen1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been obsoleted by WaveformActive. Use WaveformActive instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.FiringActivePulseGenerator1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been obsoleted by WaveformActive. Use WaveformActive instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.FiringActivePulseGen2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been removed because the feature does not exist in Automation1. This bit is now used for BitOutputActive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.FiringActivePulseGenerator2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been removed because the feature does not exist in Automation1. This bit is now used for BitOutputActive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.InsideWindow1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to Window1OutputActive. Use Window1OutputActive instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.InsideWindow2">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to Window2OutputActive. Use Window2OutputActive instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.PsoInterlock">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been removed because the feature does not exist in Automation1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.PsoOutput1Status">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been obsoleted by OutputActive. Use OutputActive instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.PsoOutput2Status">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been removed because the feature does not exist in Automation1. This bit is now used for OutputActive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.PsoExtSync">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to ExternalSyncInput. Use ExternalSyncInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.PsoExternalSyncInput">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to ExternalSyncInput. Use ExternalSyncInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.WaveformActive">
<summary>The Waveform module is actively generating a waveform.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.BitOutputActive">
<summary>The state of the Bit module output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.Window1OutputActive">
<summary>The state of the Window 1 module output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.Window2OutputActive">
<summary>The state of the Window 2 module output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.OutputActive">
<summary>The state of the Output module output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.ExternalSyncInput">
<summary>The state of the external synchronization input that is used with the PsoPulseExternalSyncOn function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.DistanceArrayDepleted">
<summary>The Distance module attempted to load a new array mode distance when no new distance values were available. The distance counters are disabled until new distance values are specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.Window1ArrayDepleted">
<summary>The Window 1 module attempted to load a new array mode window range when no new range values were available. The window output is disabled until new range values are specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.Window2ArrayDepleted">
<summary>The Window 2 module attempted to load a new array mode window range when no new range values were available. The window output is disabled until new range values are specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.BitArrayDepleted">
<summary>The Bit module attempted to load a new bit value when no new bit values were available. The bit output is disabled until new range values are specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoStatus.WaveformArrayDepleted">
<summary>The Waveform module attempted to load a new array mode parameter value when no new parameter values were available. The waveform module is disabled until new parameter values are specified.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.StoStatus">
<summary>
Represents the Safe Torque Off (STO) status for an axis.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.StoStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.StoStatus.Sto1Activated">
<summary>Safe Torque Off (STO) channel 1 hardware is activated and preventing torque.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.StoStatus.Sto1Event">
<summary>Power has been removed from the Safe Torque Off (STO) channel 1 input. Torque on the motor will be prevented after the hardware time delay.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.StoStatus.Sto2Activated">
<summary>Safe Torque Off (STO) channel 2 hardware is activated and preventing torque.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.StoStatus.Sto2Event">
<summary>Power has been removed from the Safe Torque Off (STO) channel 2 input. Torque on the motor will be prevented after the hardware time delay.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.StoStatus.StoCrossCheckFault">
<summary>The Safe Torque Off (STO) diagnostic check has detected a hardware problem on an STO channel and is preventing torque on the motor.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BissStatus">
<summary>
Represents the BiSS status for a feedback input.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BissStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BissStatus.CrcError">
<summary>A CRC error occurred while the drive communicated with the encoder.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BissStatus.EncoderWarning">
<summary>The warning bit from the encoder is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BissStatus.EncoderError">
<summary>The error bit from the encoder is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BissStatus.TimeoutError">
<summary>The encoder did not respond in the necessary time interval.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FrequencyResponseMode">
<summary>
The type of frequency response disturbance to use
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FrequencyResponseMode.Off">
<summary>Turn off frequency response</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FrequencyResponseMode.Sinusoid">
<summary>Uses a sinusoid disturbance</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FrequencyResponseMode.WhiteNoise">
<summary>Uses a white noise disturbance</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FrequencyResponseMode.Multisine">
<summary>Uses a Multisine disturbance</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Camming">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.STAT_NOT_ALLOCATED">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.STAT_ALLOCATED">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.STAT_COEFFS_BUSY">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.STAT_COEFFS_DONE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.STAT_IN_USE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.MODE_OFF">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.MODE_RELATIVE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.MODE_ABSOLUTE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.MODE_VELOCITY">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.MODE_MAX">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.POINT_LINEAR">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.POINT_CUBIC">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Camming.POINT_MAX">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Drive">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_INVALID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_REPEATER">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_THIRDPARTY">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_PC">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_NDRIVEHL_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEHP_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NPAQ_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEHP_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVECP_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO2_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO2_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO4_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO4_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NPAQ_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO1_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO1_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO3_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSERVO3_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVECP_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEMP_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP1_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP1_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP2_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP2_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP3_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP3_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP4_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NSTEP4_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVECL_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVECP_REV_B">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEHPE_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKSSAM2_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKSSAM3_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEHLE_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEML_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEPMT_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVECL_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_SF4_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKCLS2_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKCLS3_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEFLS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKCLS2_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKSSAM2_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKSSAM3_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEFLS_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEQL_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEQLE_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKGCL_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NMARKGCL_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEFCL_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_NDRIVEFCL_REV_A">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_HYPERWIRE_GL4_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_HYPERWIRE_XL4S_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XR3_REV_DASH_AMP_NONE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XR3_REV_DASH_AMP_XSP3">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XR3_REV_DASH_AMP_XSL3">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XR3_PIEZO_REV_DASH_AMP_QSL3E">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XC4_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XC4E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XR3_PIEZO_REV_DASH_AMP_NONE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XL5E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XC2_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_UNIDENTIFIED_HYPERWIRE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XC2E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_SI4_4_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XC6E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXC4_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXC4E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XL2E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_SI4_2_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XR3_PIEZO_REV_DASH_AMP_QSL3_2">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XI4_2_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XI4_4_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXL5E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXC6E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXR3_REV_DASH_AMP_NONE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXR3_REV_DASH_AMP_XSP3">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXR3_REV_DASH_AMP_XSL3">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXR3_PIEZO_REV_DASH_AMP_NONE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXR3_PIEZO_REV_DASH_AMP_QSL3E">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXR3_PIEZO_REV_DASH_AMP_QSL3_2">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_GI4_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXC2_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXC2E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXL2E_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXI4_2_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXI4_4_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_FLEX_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IFLEX_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XA4_1_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XA4_2_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XA4_3_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_XA4_4_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXA4_1_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXA4_2_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXA4_3_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.Drive.HARDWARE_TYPE_IXA4_4_AXIS_REV_DASH">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveID">
<summary>
This must match the list maintained on the wiki here: https://wiki2.aerotech.com/x/eQB2Ew
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.UNPROGRAMMED_DRIVE_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01712_02_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_01_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_02_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_03_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_04_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_01_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_02_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_03_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_04_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_09_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_10_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_11_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_12_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_01_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_02_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_03_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_04_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_05_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_06_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_07_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_08_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01760_XX_09_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_01_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_03_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_05_XI4_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_06_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_07_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_08_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_09_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_10_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_11_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_12_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_13_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01744_XX_15_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_05_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_06_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_07_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01740_XX_08_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.XL4S_UNIQUE_ID">
<summary>CTRL-40534: The following drive ID is not programmed to flash (GL4 and XL4s both have drive ID = 1). It is used to differentiate the GL4 and XL4s firmware images for software updating.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01758_XX_05_GI4_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01821_XX_01_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01821_XX_02_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01821_XX_03_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01821_XX_04_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_01_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_02_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_06_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_03_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_05_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_04_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_07_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_08_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_09_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_13_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_10_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_12_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_11_ID">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveID.EFN01814_XX_14_ID">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveControlReason">
<summary>
An enumerated type to list the reasons that the drive may take control of motion.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.None">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.DriveAbort">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.DriveDisable">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.GalvoSoftLimitFault">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.IfovActiveFalling">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.MovePastCwLimit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.MovePastCcwLimit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandPositionSet">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandEnableDisable">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandMoveToLimit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandMoveOutOfLimit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandStepperReturnToMarker">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandFreerun">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandMotorAngleSet">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandMotorCurrentSet">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandMotorVoltageSet">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandAnalogControl">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandGalvoEncoderScaleFactor">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandCopyVelocityFeedbackToPositionFeedback">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandServoOnOff">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandAutoFocus">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.CommandCommutationInitialize">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.GantryAbortSync">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.RigidGantrySync">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveControlReason.AbortWhileDisabled">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ActiveFeatures">
<summary>
Represents a mask of the features active on the controller
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ActiveFeatures.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ActiveFeatures.ControllerPlusOption">
<summary>The Controller Plus option is active on this controller.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisStatus">
<summary>
Represents an axis status
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.CalEnabled1D">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CalibrationEnabled1D. Use CalibrationEnabled1D instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.CalEnabled2D">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CalibrationEnabled2D. Use CalibrationEnabled2D instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.Homed">
<summary>The axis is homed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.Profiling">
<summary>The axis is performing coordinated (LINEAR, CW, CCW, BEZIER), RAPID, or PVT motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.WaitDone">
<summary>The controller finished waiting for motion on this axis to complete. The behavior of this bit depends on the selected wait mode. When in Wait Mode Motion Done, this bit will mimic the Motion Done bit, but when in Wait Mode In Position, this bit will not be active until both the Motion Done bit and the In Position bit are both active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.CommandValid">
<summary>Motion on the axis is controlled from the SMC.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.Homing">
<summary>The axis is currently homing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.Enabling">
<summary>The axis is currently enabling.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.JogGenerating">
<summary>This bit represents internal status.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.Jogging">
<summary>The axis is performing asynchronous motion (MoveIncremental(), MoveAbsolute(), MoveFreerun()).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.DrivePending">
<summary>The SMC sent a command to the drive that will cause the drive to take control of the motion, but the drive has not yet done so.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.DriveAbortPending">
<summary>The SMC sent an abort command to the drive, but the drive has not yet started the abort.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.TrajectoryFiltering">
<summary>Trajectory filtering is enabled for this axis using either the TrajectoryIIRFilter or TrajectoryFIRFilter parameters.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.IfovEnabled">
<summary>Infinite Field of View (IFOV) is enabled for this axis. Enable IFOV by issuing the IFOV ON command. Disable IFOV by issuing the IFOV OFF command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.NotVirtual">
<summary>A physical drive is associated with this axis. Axes with no drive attached will clear this bit and operate as virtual axes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.CalibrationEnabled1D">
<summary>The specified 1D calibration file contains a calibration table that corrects this axis. The state of this bit is not affected by the CALENABLE or CALDISABLE commands.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.CalibrationEnabled2D">
<summary>The specified 2D calibration file contains a calibration table that corrects this axis. The state of this bit is not affected by the CALENABLE or CALDISABLE commands.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.CammingGearingControl">
<summary>The axis is currently controlled by camming or gearing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.JoystickControl">
<summary>The axis is currently performing motion under control of the JOYSTICK command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.BacklashActive">
<summary>Backlash compensation is enabled for this axis using the BacklashDistance parameter or the BACKLASH ON command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.GainMappingEnabled">
<summary>A Gain Mapping table was specified for this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.TransformationInput">
<summary>The motion on this axis is the input to a kinematic transformation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.TransformationOutput">
<summary>The motion on this axis is the output of a kinematic transformation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.MotionDone">
<summary>Motion on this axis is done, meaning that the velocity command reached zero.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.MotionClamped">
<summary>Motion on this axis is being clamped due to a software limit clamp or safe zone. Refer to the SoftwareLimitSetup parameter, and the Safe zone overview.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.GantryAligned">
<summary>This axis is part of a gantry pair and the gantry is correctly aligned. This bit will not be active until the gantry axes have been homed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.GantryDriveControlRealigning">
<summary>The axis is currently performing gantry realignment motion due to Theta axis misalignment caused by drive motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatus.ThermoCompEnabled">
<summary>The ThermoComp feature is currently turned on.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisFault">
<summary>
Represents the faults of an axis
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.PositionError">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to PositionErrorFault. Use PositionErrorFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.OverCurrent">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to OverCurrentFault. Use OverCurrentFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CwEndOfTravelLimitFault. Use CwEndOfTravelLimitFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CcwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CcwEndOfTravelLimitFault. Use CcwEndOfTravelLimitFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CwSoftLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CwSoftwareLimitFault. Use CwSoftwareLimitFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CcwSoftLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CcwSoftwareLimitFault. Use CcwSoftwareLimitFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.FbkInput0">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to FeedbackInput0Fault. Use FeedbackInput0Fault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.FbkInput1">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to FeedbackInput1Fault. Use FeedbackInput1Fault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.HallFault">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to HallSensorFault. Use HallSensorFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MaxVelocity">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to MaxVelocityCommandFault. Use MaxVelocityCommandFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.EstopFault">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to EmergencyStopFault. Use EmergencyStopFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.VelocityError">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to VelocityErrorFault. Use VelocityErrorFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MotorTemp">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to MotorTemperatureFault. Use MotorTemperatureFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.AmplifierTemp">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to AmplifierTemperatureFault. Use AmplifierTemperatureFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MisalignmentFault">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to GantryMisalignmentFault. Use GantryMisalignmentFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.FbkScalingFault">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to FeedbackScalingFault. Use FeedbackScalingFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MrkSearchFault">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to MarkerSearchFault. Use MarkerSearchFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.InPosTimeout">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to InPositionTimeoutFault. Use InPositionTimeoutFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.VoltageClamp">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to VoltageClampFault. Use VoltageClampFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MotorSupply">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to MotorSupplyFault. Use MotorSupplyFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.Internal">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to InternalFault. Use InternalFault instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.PositionErrorFault">
<summary>The absolute value of the difference between the position command and the position feedback exceeded the threshold specified by the PositionErrorThreshold parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.OverCurrentFault">
<summary>The average motor current exceeded the threshold specified by the AverageCurrentThreshold and AverageCurrentTime parameters.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CwEndOfTravelLimitFault">
<summary>The axis encountered the clockwise (positive) end-of-travel limit switch.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CcwEndOfTravelLimitFault">
<summary>The axis encountered the counter-clockwise (negative) end-of-travel limit switch.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CwSoftwareLimitFault">
<summary>The axis was commanded to move beyond the position specified by the SoftwareLimitHigh parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CcwSoftwareLimitFault">
<summary>The axis was commanded to move beyond the position specified by the SoftwareLimitLow parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.AmplifierFault">
<summary>The amplifier for this axis exceeded its maximum current rating or experienced an internal error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.FeedbackInput0Fault">
<summary>The drive detected a problem with the feedback device specified by the FeedbackInput0 parameter. Or, the drive detected an invalid feedback configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.FeedbackInput1Fault">
<summary>The drive detected a problem with the feedback device specified by the FeedbackInput1 parameter. Or, the drive detected an invalid feedback configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.HallSensorFault">
<summary>The drive detected an invalid state (all high or all low) for the Hall-effect sensor inputs on this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MaxVelocityCommandFault">
<summary>The commanded velocity is more than the velocity command threshold. Before the axis is homed, this threshold is specified by the VelocityCommandThresholdBeforeHome parameter. After the axis is homed, this threshold is specified by the VelocityCommandThreshold parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.EmergencyStopFault">
<summary>The emergency stop sense input, specified by the ESTOPFaultInput or SoftwareESTOPInput parameter, was triggered, or the controller detected a fault condition in the Safe Torque Off (STO) hardware.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.VelocityErrorFault">
<summary>The absolute value of the difference between the velocity command and the velocity feedback exceeded the threshold specified by the VelocityErrorThreshold parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.CommutationFault">
<summary>The axis attempted commutation, but could not initialize correctly.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.ExternalFault">
<summary>The external fault input, specified by the ExternalFaultAnalogInput, ExternalFaultDigitalInput, or SoftwareExternalFaultInput parameter, was triggered.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MotorTemperatureFault">
<summary>The motor thermistor input was triggered, which indicates that the motor exceeded its maximum recommended operating temperature.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.AmplifierTemperatureFault">
<summary>The amplifier temperature is not within the operating range or the shunt resistor temperature has exceeded the maximum threshold. This fault occurs at amplifier temperatures less than 0° C or greater than 75° C and shunt resistor temperatures greater than 200° C.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.EncoderFault">
<summary>The encoder fault input on the motor feedback connector was triggered.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.GantryMisalignmentFault">
<summary>The position command or position feedback of the rotary gantry axis exceeded the value specified by the GantryMisalignmentThreshold parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.FeedbackScalingFault">
<summary>The difference between the position feedback and the scaled (adjusted by GainKv) velocity feedback exceeds the threshold specified by the PositionErrorThreshold parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MarkerSearchFault">
<summary>The distance that the axis moved while searching for the marker exceeded the threshold specified by the MarkerSearchThreshold parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.SafeZoneFault">
<summary>The axis decelerated to a stop because the motion violated a safe zone.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.InPositionTimeoutFault">
<summary>The axis did not achieve in position status in the period specified by the InPositionDisableTimeout parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.VoltageClampFault">
<summary>The commanded voltage output exceeded the value of the PiezoVoltageClampLow or PiezoVoltageClampHigh parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.MotorSupplyFault">
<summary>The amplifier detected that no motor supply voltage is present or that the motor supply voltage is less than the minimum required voltage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisFault.InternalFault">
<summary>The drive encountered an internal error that caused it to disable. Contact Aerotech Global Technical Support.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveStatus">
<summary>
Represents the drive status bits
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.CwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CwEndOfTravelLimitInput. Use CwEndOfTravelLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.CcwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CcwEndOfTravelLimitInput. Use CcwEndOfTravelLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.HomeLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to HomeLimitInput. Use HomeLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.EstopInput">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to EmergencyStopInput. Use EmergencyStopInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.GalvoCalEnabled">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to GalvoCalibrationEnabled. Use GalvoCalibrationEnabled instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.ProgramFlash">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to ProgrammingFlash. Use ProgrammingFlash instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.AccelPhase">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to AccelerationPhase. Use AccelerationPhase instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.DecelPhase">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to DecelerationPhase. Use DecelerationPhase instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.Enabled">
<summary>The axis is enabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.CwEndOfTravelLimitInput">
<summary>This represents the state of the CW end of travel limit input. It is affected by the active polarity, which is configured by the EndOfTravelLimitSetup parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.CcwEndOfTravelLimitInput">
<summary>This represents the state of the CCW end of travel limit input. It is affected by the active polarity, which is configured by the EndOfTravelLimitSetup parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.HomeLimitInput">
<summary>This represents the state of the home limit input. It is affected by the active polarity, which is configured by the EndOfTravelLimitSetup parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.MarkerInput">
<summary>This represents the state of the marker input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.HallAInput">
<summary>This represents the state of the Hall-effect sensor A input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.HallBInput">
<summary>This represents the state of the Hall-effect sensor B input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.HallCInput">
<summary>This represents the state of the Hall-effect sensor C input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.SineEncoderError">
<summary>An error condition is present on the Sine encoder input of the position feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.CosineEncoderError">
<summary>An error condition is present on the Cosine encoder input of the position feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.EmergencyStopInput">
<summary>This represents the state of the emergency stop sense input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.BrakeOutput">
<summary>State of the dedicated brake output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.GalvoPowerCorrection">
<summary>Galvo Power Correction is configured on this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.AmplifierActive">
<summary>The amplifier associated with this physical axis is active and outputting current to the attached motor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.NoMotorSupply">
<summary>The drive detected that no motor supply voltage is present.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.CurrentClamp">
<summary>For piezo drives, the controller clamps the motor output to the value of the PiezoVoltageClampLow or the PiezoVoltageClampHigh parameter. For all other drives, the controller clamps the motor output to the value of the MaxCurrentClamp parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.MarkerLatch">
<summary>The position of the marker is latched.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.PowerLimiting">
<summary>The motor output is being limited to prevent damage to the amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.GalvoCalibrationEnabled">
<summary>The specified 2D calibration file contains a galvo calibration table that corrects this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.AutofocusActive">
<summary>The axis is operating under control of the AUTOFOCUS loop.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.ProgrammingFlash">
<summary>The drive is programming its internal flash memory.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.ServoControl">
<summary>The axis is operating under servo control.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.InPosition">
<summary>The axis is considered to be in position as configured by the InPositionDistance and InPositionTime parameters.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.MoveActive">
<summary>The axis is performing drive generated motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.AccelerationPhase">
<summary>The axis is accelerating.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.DecelerationPhase">
<summary>The axis is decelerating.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.EncoderClipping">
<summary>The on-board encoder multiplier detected that the input signals may be exceeding the maximum input range, which results in clipping of the encoder signals.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveStatus.DualLoopActive">
<summary>The axis is operating in dual-loop mode using two different feedback devices.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskStatus0">
<summary>
Represents a set of task status
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.SyncFunctionExecuting">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to SynchronizedFunctionExecuting. Use SynchronizedFunctionExecuting instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.ProgramAssociated">
<summary>A program is associated with this task.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.ImmediateExecuting">
<summary>An immediate command is executing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.ReturnMotionExecuting">
<summary>Return motion is executing due to an TaskInterruptMotionOff() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.ProgramReset">
<summary>The program is reset.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.PendingAxesStop">
<summary>One or more axes are decelerating due to an abort, task stop, task error, feedhold, onerror, or retrace direction reversal that occurs during a RAPID, LINEAR, CW, CCW, or BEZIER motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.FeedholdActive">
<summary>Bit turns on as soon as motion begins to decelerate due to a feedhold. Bit turns off when motion begins to accelerate back to speed due to a feedhold release. The FeedholdAxesStopped bit of Task Status 1 indicates when deceleration due to a feedhold stops.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.CallbackHoldActive">
<summary>A callback command was issued and is waiting for a front-end application to acknowledge the command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.CallbackResponding">
<summary>A callback command was issued and is waiting for a front-end application to handle the command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.SpindleActive">
<summary>The spindle is currently active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.Retrace">
<summary>Retrace is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.InterruptMotionActive">
<summary>Interrupt motion is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.JoystickActive">
<summary>The task is executing a JoystickRun() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.CornerRounding">
<summary>Corner rounding is enabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.JoystickLowSpeedActive">
<summary>The joystick is using the low speed mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.SynchronizedFunctionExecuting">
<summary>A synchronized function is executing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus0.TaskControlRestricted">
<summary>The task has control restrictions enabled.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskStatus1">
<summary>
Represents a set of task status
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.CutterOffsetsEnablingPos">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CutterOffsetsEnablingPositive. Use CutterOffsetsEnablingPositive instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.CutterOffsetsEnablingNeg">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CutterOffsetsEnablingNegative. Use CutterOffsetsEnablingNegative instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.SyncFunctionPending">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to SynchronizedFunctionPending. Use SynchronizedFunctionPending instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.AsyncSmcMotionAbortPending">
<summary>An asynchronous motion is aborting.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.RetraceRequested">
<summary>A retrace operation was requested.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.MsoChange">
<summary>An MSO change was issued.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.SpindleFeedhold">
<summary>A spindle is in feedhold.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.FeedholdAxesStopped">
<summary>Bit turns on as soon as deceleration due to a feedhold ends. Bit turns off when motion begins to accelerate back to speed due to a feedhold release. The FeedholdActive bit of Task Status 0 indicates when a feedhold is issued.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.CutterRadiusEnabling">
<summary>Cutter radius compensation is performing a lead-on move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.CutterRadiusDisabling">
<summary>Cutter radius compensation is performing a lead-off move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.CutterOffsetsEnablingPositive">
<summary>Cutter offset compensation is performing a lead-on positive move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.CutterOffsetsEnablingNegative">
<summary>Cutter offset compensation is performing a lead-on negative move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.CutterOffsetsDisabling">
<summary>Cutter offset compensation is performing a lead-off move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.OnErrorHandlerPending">
<summary>An onerror handler is pending.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.OnErrorHandlerExecuting">
<summary>An onerror handler is executing.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.ProgramStopPending">
<summary>A program stop is pending.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.SynchronizedFunctionPending">
<summary>A synchronized function is pending.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.NoMfoFloor">
<summary>The MfoMinimum parameter is negative.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.Interrupted">
<summary>This bit represents internal status.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus1.IfovBufferHold">
<summary>This bit represents internal status.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskStatus2">
<summary>
Represents a set of task status
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.CutterOffsetsActivePos">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CutterOffsetsActivePositive. Use CutterOffsetsActivePositive instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.CutterOffsetsActiveNeg">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CutterOffsetsActiveNegative. Use CutterOffsetsActiveNegative instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.ScalingActive">
<summary>Parts scaling is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.ProfileActive">
<summary>Profile motion is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.MotionModeRapid">
<summary>The motion mode is Rapid (G0).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.MotionModeLinear">
<summary>The motion mode is Linear (G1).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.MotionPvt">
<summary>MovePvt() motion is being executed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.MotionContinuousActive">
<summary>The task is actively velocity profiling.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.CutterOffsetsActivePositive">
<summary>Positive cutter offset compensation is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.CutterRadiusActiveLeft">
<summary>Cutter radius compensation left is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.CutterRadiusActiveRight">
<summary>Cutter radius compensation right is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.CutterOffsetsActiveNegative">
<summary>Negative cutter offset compensation is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.NormalcyActiveLeft">
<summary>Normalcy left is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.NormalcyActiveRight">
<summary>Normalcy right is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.NormalcyAlignment">
<summary>A normalcy alignment move is being performed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.MotionModeCw">
<summary>The motion mode is CW (G2).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.MotionModeCcw">
<summary>The motion mode is CCW (G3).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.LimitFeedrateActive">
<summary>Feedrate limiting is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.LimitMfoActive">
<summary>MFO limiting is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.Coord1Plane1">
<summary>Coordinate System 1 Plane 1 is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.Coord1Plane2">
<summary>Coordinate System 1 Plane 2 is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.Coord1Plane3">
<summary>Coordinate System 1 Plane 3 is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.Coord2Plane1">
<summary>Coordinate System 2 Plane 1 is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.Coord2Plane2">
<summary>Coordinate System 2 Plane 2 is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatus2.Coord2Plane3">
<summary>Coordinate System 2 Plane 3 is active.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskMode">
<summary>
Represents a set of task status
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.Secondary">
<summary>Secondary units mode is in use.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.Absolute">
<summary>Absolute programming mode is in use.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.AccelTypeLinear">
<summary>The acceleration type is configured for linear ramping.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.AccelModeRate">
<summary>The acceleration mode is rate-based.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.InverseDominance">
<summary>Inverse dominance (G98) mode is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.MotionContinuous">
<summary>Motion continuous (VelocityBlendingOn()) mode is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.SpindleStopOnProgramHalt">
<summary>Spindles will abort on a program stop (G101).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.OptionalPause">
<summary>Optional Pause mode is active (G114).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.AccelTypeSCurve">
<summary>The acceleration type is configured for S-curve ramping.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.MfoLock">
<summary>MFO Lock mode is active (M48).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.MsoLock">
<summary>MSO Lock mode is active (M50).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.DecelTypeLinear">
<summary>The deceleration type is configured for linear ramping.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.DecelTypeSCurve">
<summary>The deceleration type is configured for S-curve ramping.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.ProgramFeedrateInverseTime">
<summary>Programmed feed rates are specified in inverse time units (G93).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.ProgramFeedrateUnitsPerSpindleRev">
<summary>Programmed feed rates are specified in units per spindle revolution (G95).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.DecelModeRate">
<summary>The deceleration mode is rate-based.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.MfoActiveOnJog">
<summary>MFO will affect asynchronous motion (G121).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.WaitForInPos">
<summary>The wait for in-position wait mode is active.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.Minutes">
<summary>When this bit is true the time units are minutes. When this bit is false the time units are seconds.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskMode.WaitAuto">
<summary>The automatic wait mode is active.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RampType">
<summary>
Represents a motion ramping type.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RampType.Linear">
<summary>Linear-based acceleration and deceleration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RampType.SCurve">
<summary>S-curve-based acceleration and deceleration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RampType.Sine">
<summary>Sine-based acceleration and deceleration.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RampMode">
<summary>
Represents a motion ramping mode.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RampMode.Rate">
<summary>Rate-based acceleration and deceleration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RampMode.Time">
<summary>Time-based acceleration and deceleration.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MinimumMaximum">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.AXES">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.TEXT_LEN">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.STRING_DATA_LEN">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.NAME_LEN">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.NUMBUFF">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.REG_SZ_SIZE">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.TOOL_NAME_LEN">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.DECODED_TEXT_LINE_LEN">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.TASKS">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.TASKS_RESTRICTED">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.VIRT_BINARY_BITS">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.VIRT_REGISTERS">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.FIELDBUS_CONFIG_FILE_COUNT">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MinimumMaximum.FIELDBUS_HILSCHER_DEVICES">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ModbusClientRegister">
<summary>
The available register sets of a Modbus Client connection.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusClientRegister.OutputWords">
<summary>16-bit outputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusClientRegister.OutputBits">
<summary>1-bit outputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusClientRegister.InputWords">
<summary>16-bit inputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusClientRegister.InputBits">
<summary>1-bit inputs.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ModbusServerRegister">
<summary>
The available register sets of a Modbus Server connection.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusServerRegister.OutputWords">
<summary>16-bit outputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusServerRegister.OutputBits">
<summary>1-bit outputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusServerRegister.InputWords">
<summary>16-bit inputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ModbusServerRegister.InputBits">
<summary>1-bit inputs.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EthercatSlaveRegister">
<summary>
The available register sets of an EtherCAT Slave connection.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveRegister.RxPdo">
<summary>Receive (Rx) Process Data Objects (PDO) packets.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveRegister.TxPdo">
<summary>Transmit (Tx) Process Data Objects (PDO) packets.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EtherNetIpAdapterRegister">
<summary>
The available register sets of an EtherNet/IP Adapter connection.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpAdapterRegister.InputInteger">
<summary>32-bit integer inputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpAdapterRegister.InputFloats">
<summary>32-bit float inputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpAdapterRegister.OutputInteger">
<summary>32-bit integer outputs.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EtherNetIpAdapterRegister.OutputFloats">
<summary>32-bit float outputs.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ThermoCompStatus">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ThermoCompStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ThermoCompStatus.Enabled">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ThermoCompStatus.AutomaticUpdateEnabled">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ThermoCompStatus.TemperatureOutOfRange">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FieldbusRegisterType">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusClientInputWord">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusClientOutputWord">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusClientInputBit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusClientOutputBit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusClientOutputWordStatus">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusClientOutputBitStatus">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusServerInputWord">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusServerOutputWord">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusServerInputBit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.ModbusServerOutputBit">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.EthercatSlaveRxPdo">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.EthercatSlaveTxPdo">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.EtherNetIpAdapterInputInteger">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.EtherNetIpAdapterInputFloat">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.EtherNetIpAdapterOutputInteger">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FieldbusRegisterType.EtherNetIpAdapterOutputFloat">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EthercatSlaveState">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveState.Off">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveState.Init">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveState.PreOp">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveState.Boot">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveState.SafeOp">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveState.Op">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EthercatSlaveState.Error">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommandOutputType">
<summary>
Represents the type of output an axis generates.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CommandOutputType.None">
<summary>No output is generated.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CommandOutputType.Current">
<summary>Current output is generated.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CommandOutputType.Voltage">
<summary>Voltage output is generated.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionSampleTrigger">
<summary>
Specifies the condition for data collection sampling.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionSampleTrigger.Time">
<summary>Collect sample based on constant time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionSampleTrigger.OnAnyChange">
<summary>Collect sample when the condition item changes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionSampleTrigger.OnIncrease">
<summary>Collect sample when the condition item increases.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DataCollectionSampleTrigger.OnDecrease">
<summary>Collect sample when the condition item decreases.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration1D2DTablePrecision">
<summary>
Specifies the precision of position and correction values in a 1D/2D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1D2DTablePrecision.SingleFloat">
<summary>Position and correction values are stored as single-precision floating-point values.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1D2DTablePrecision.DoubleFloat">
<summary>Position and correction values are stored as double-precision floating-point values.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration1D2DTableStorageFormat">
<summary>
Specifies the storage format of a 1D/2D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1D2DTableStorageFormat.FullCorrections">
<summary>Correction values for all axes in the calibration table are stored.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1D2DTableStorageFormat.PartialCorrections">
<summary>Correction values for only the corrected axis in the calibration table are stored.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration1DTableNEGPOS">
<summary>
Specifies whether to negate position values in a 1D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1DTableNEGPOS.NotSpecified">
<summary>Position values in the calibration table are not negated.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1DTableNEGPOS.Specified">
<summary>Position values in the calibration table are negated.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration1DTableNEGCOR">
<summary>
Specifies whether to negate correction values in a 1D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1DTableNEGCOR.NotSpecified">
<summary>Correction values in the calibration table are not negated.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1DTableNEGCOR.Specified">
<summary>Correction values in the calibration table are negated.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration1DTableHOMEDIRECTION">
<summary>
Specifies the home direction of a 1D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1DTableHOMEDIRECTION.None">
<summary>No home direction was specified for the calibration table.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1DTableHOMEDIRECTION.CW">
<summary>The home direction of the calibration table is clockwise.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration1DTableHOMEDIRECTION.CCW">
<summary>The home direction of the calibration table is counter-clockwise.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration2DTableFormat">
<summary>
Specifies the format of a 2D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableFormat.Calibration2D">
<summary>2D axis calibration format.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableFormat.Calibration2DGalvo">
<summary>2D galvo axis calibration format.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration2DTableNEGCOR">
<summary>
Specifies whether to negate correction values in a 2D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableNEGCOR.NotSpecified">
<summary>Correction values in the calibration table are not negated.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableNEGCOR.Specified">
<summary>Correction values in the calibration table are negated.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration2DTableNOCPUSIGN">
<summary>
Specifies whether to ignore ReverseMotionDirection for a 2D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableNOCPUSIGN.NotSpecified">
<summary>ReverseMotionDirection for the calibration table is not ignored.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableNOCPUSIGN.Specified">
<summary>ReverseMotionDirection for the calibration table is ignored</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibration2DTableINTABLE">
<summary>
Specifies whether to perform axis correction outside of a 2D binary calibration table.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableINTABLE.NotSpecified">
<summary>Axes are corrected to the nearest correction value when outside of the calibration table.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibration2DTableINTABLE.Specified">
<summary>Axes are not corrected when outside of the calibration table.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CalibrationCammingUnits">
<summary>
Specifies the units of distance values in a calibration or a camming file.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationCammingUnits.None">
<summary>No units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationCammingUnits.Counts">
<summary>Counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationCammingUnits.Secondary">
<summary>Secondary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationCammingUnits.Primary">
<summary>Primary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationCammingUnits.DegreeRotary">
<summary>Degrees or Rotary units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationCammingUnits.English">
<summary>English units.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationCammingUnits.Metric">
<summary>Metric units.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibrationActionTableType">
<summary>
Specifies the type of calibration table associated with a calibration file action.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibrationActionTableType.Calibration1D">
<summary>1D calibration table.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibrationActionTableType.Calibration2D">
<summary>2D calibration table.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.BinaryCalibrationActionStatus">
<summary>
Specifies the status of a binary calibration file action.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibrationActionStatus.TableAdded">
<summary>The calibration table was added.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibrationActionStatus.TableRemoved">
<summary>The calibration table was removed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.BinaryCalibrationActionStatus.TableNotAdded">
<summary>The calibration table was not added.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CalibrationType">
<summary>
Specifies the type of calibration that will be performed by a calibration action.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationType.AxisCalibration1D">
<summary>1D Axis Calibration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationType.AxisCalibration2D">
<summary>2D Axis Calibration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationType.Galvo2DAxisCalibration">
<summary>Galvo 2D Axis Calibration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CalibrationType.GalvoPowerCorrection">
<summary>Galvo Power Correction.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FeedbackInput0">
<summary>
Represents the first feedback input
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput0.PositionCommand">
<summary>Position Command</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput0.PrimaryFeedback">
<summary>Primary Feedback</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput0.AuxiliaryFeedback">
<summary>Auxiliary Feedback</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput0.AnalogInput0">
<summary>Analog Input 0</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput0.AnalogInput1">
<summary>Analog Input 1</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput0.AnalogInput2">
<summary>Analog Input 2</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput0.AnalogInput3">
<summary>Analog Input 3</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FeedbackInput1">
<summary>
Represents the second feedback input
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput1.PositionCommand">
<summary>Position Command</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput1.PrimaryFeedback">
<summary>Primary Feedback</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput1.AuxiliaryFeedback">
<summary>Auxiliary Feedback</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput1.AnalogInput0">
<summary>Analog Input 0</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput1.AnalogInput1">
<summary>Analog Input 1</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput1.AnalogInput2">
<summary>Analog Input 2</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.FeedbackInput1.AnalogInput3">
<summary>Analog Input 3</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveCommunicationType">
<summary>
Specifies the interface that is configured for drive communication.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveCommunicationType.NoCard">
<summary>The controller will operate without a card.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveCommunicationType.HyperWire">
<summary>The controller will operate using the HyperWire interface.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompilerOption">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CompilerOption.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CompilerOption.CompileLibrary">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CompilerOption.CompileLibraryDynamicOnly">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.CompilerOption.OmitDebugSymbols">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisNameValidity">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.Valid">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidEmpty">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidTooLong">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidUnsupportedCharacter">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidIsGCodeLetter">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidIsKeyword">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidDuplicate">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidUsesFeedrate">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisNameValidity.InvalidSubstring">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TuningDisturbanceType">
<summary>
The type of disturbance to use when measuring a frequency response.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TuningDisturbanceType.Sinusoid">
<summary>Use a sinusoid disturbance.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TuningDisturbanceType.WhiteNoise">
<summary>Use a white noise disturbance.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TuningDisturbanceType.DriveArray">
<summary>Use the drive array to define a custom disturbance.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TuningDisturbanceType.MultisinePlus">
<summary>Use the MultisinePlus disturbance.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TuningMeasurementType">
<summary>
The type of frequency response to measure.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TuningMeasurementType.ServoOpenLoop">
<summary>Measure the open loop response of the servo loop.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TuningMeasurementType.CurrentOpenLoop">
<summary>Measure the open loop response of the current loop.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TuningMeasurementType.AutoFocusOpenLoop">
<summary>Measure the open loop response of the auto-focus loop.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EnDatStatus">
<summary>
Represents the EnDat status for a feedback input.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnDatStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnDatStatus.CrcError">
<summary>A CRC error occurred while the drive communicated with the encoder.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnDatStatus.ReceiveError">
<summary>The encoder sent a &quot;data receive error&quot;.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnDatStatus.TimeoutError">
<summary>The encoder did not respond in the necessary time interval.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ExpansionBoardOption">
<summary>
The expansion board option installed on this axis.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ExpansionBoardOption.NotSupported">
<summary>Expansion board not supported.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ExpansionBoardOption.EB0">
<summary>No expansion board.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ExpansionBoardOption.EB1">
<summary>EB1 expansion board.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ExpansionBoardOption.EB2">
<summary>EB2 expansion board.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MultiplierOption">
<summary>
The encoder multiplier option installed on this axis.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MultiplierOption.NotSupported">
<summary>Multiplier option not supported.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MultiplierOption.MX0">
<summary>No encoder multiplier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MultiplierOption.MX1">
<summary>x16384 multiplier (primary), no multiplier (auxiliary).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MultiplierOption.MX2">
<summary>x65536 multiplier (primary), no multiplier (auxiliary).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MultiplierOption.MX3">
<summary>x65536 multiplier (primary), x16384 multiplier (auxiliary).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MultiplierOption.MX4">
<summary>x65536 multiplier (primary), x65536 multiplier (auxiliary).</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoOption">
<summary>
The PSO option installed on this axis.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.NotSupported">
<summary>PSO option not supported.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.PSO0">
<summary>No purchased PSO option present.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.PSO1">
<summary>One axis PSO tracking enabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.PSO2">
<summary>Two axis PSO tracking enabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.PSO3">
<summary>Three axis PSO tracking enabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.PSO4">
<summary>One axis Part-speed PSO tracking enabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.PSO5">
<summary>Two axis Part-speed PSO tracking enabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoOption.PSO6">
<summary>Three axis Part-speed PSO tracking enabled.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AbsoluteEncoderOption">
<summary>
The absolute encoder option installed on the axis.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AbsoluteEncoderOption.NotSupported">
<summary>Absolute Encoder option not supported.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AbsoluteEncoderOption.A0">
<summary>No Absolute Encoder Support.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AbsoluteEncoderOption.A1">
<summary>Absolute Encoder Support.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RatedMotorSupplyVoltageOption">
<summary>
The Rated Motor Supply Voltage option on this axis.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RatedMotorSupplyVoltageOption.NotSupported">
<summary>Rated Motor Supply Voltage option not supported.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RatedMotorSupplyVoltageOption.V240">
<summary>Standard voltage Rated Motor Supply Voltage is 240 VAC Max.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RatedMotorSupplyVoltageOption.V480">
<summary>High voltage Rated Motor Supply Voltage option is 480 VAC Max.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RatedMotorSupplyVoltageOption.VDC100">
<summary>DC voltage Rated Motor Supply Voltage option is 100 VDC Max.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GantryLogicalType">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GantryLogicalType.R">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GantryLogicalType.Theta">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GantryMechanicalDesign">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GantryMechanicalDesign.Rigid">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GantryMechanicalDesign.Flexible">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus">
<summary>
Represents the primary feedback connector status bits
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.CwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CwEndOfTravelLimitInput. Use CwEndOfTravelLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.CcwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to CcwEndOfTravelLimitInput. Use CcwEndOfTravelLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.HomeLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to HomeLimitInput. Use HomeLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.RawCwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to RawCwEndOfTravelLimitInput. Use RawCwEndOfTravelLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.RawCcwEotLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to RawCcwEndOfTravelLimitInput. Use RawCcwEndOfTravelLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.RawHomeLimit">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to RawHomeLimitInput. Use RawHomeLimitInput instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.DigitalCosineInput">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to DigitalCosineInput0. Use DigitalCosineInput0 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.DigitalSineInput">
<summary>This enum value is deprecated and will be removed in the next major version of Automation1 software. This enum value has been renamed to DigitalSineInput0. Use DigitalSineInput0 instead of this enum value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.CwEndOfTravelLimitInput">
<summary>This represents the state of the CW end of travel limit input. It is affected by the active polarity, which is configured by the EndOfTravelLimitSetup parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.CcwEndOfTravelLimitInput">
<summary>This represents the state of the CW end of travel limit input. It is affected by the active polarity, which is configured by the EndOfTravelLimitSetup parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.HomeLimitInput">
<summary>This represents the state of the home limit input. It is affected by the active polarity, which is configured by the EndOfTravelLimitSetup parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.MarkerInput">
<summary>This represents the state of the marker input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.SineEncoderError">
<summary>An error condition is present on the Sine encoder input of the feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.CosineEncoderError">
<summary>An error condition is present on the Cosine encoder input of the feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.MarkerLatch">
<summary>The position of the marker is latched.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.EncoderClipping">
<summary>The on-board encoder multiplier detected that the input signals may be exceeding the maximum input range, which results in clipping of the encoder signals.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.HallAInput">
<summary>This represents the state of the Hall A input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.HallBInput">
<summary>This represents the state of the Hall B input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.HallCInput">
<summary>This represents the state of the Hall C input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.RawCwEndOfTravelLimitInput">
<summary>This represents the state of the CW end of travel limit input at the primary feedback connector. It is not affected by the active polarity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.RawCcwEndOfTravelLimitInput">
<summary>This represents the state of the CW end of travel limit input at the primary feedback connector. It is not affected by the active polarity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.RawHomeLimitInput">
<summary>This represents the state of the home limit input at the primary feedback connector. It is not affected by the active polarity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.MxQuadratureWarning">
<summary>The on-board encoder multiplier detected that the quadrature generation logic exceeded the maximum rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.MxQuadratureError">
<summary>The on-board encoder multiplier detected that overflow occurred in the quadrature generation logic.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.DigitalCosineInput0">
<summary>This represents the state of the square wave cosine input or the digital interpretation of the sine wave cosine input from the feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.DigitalSineInput0">
<summary>This represents the state of the square wave sine input or the digital interpretation of the sine wave sine input from the feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.DigitalCosineInput1">
<summary>This represents the state of the square wave cosine input or the digital interpretation of the sine wave cosine input from the second feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryFeedbackStatus.DigitalSineInput1">
<summary>This represents the state of the square wave sine input or the digital interpretation of the sine wave sine input from the second feedback device.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus">
<summary>
Represents the auxiliary feedback connector status bits
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.MarkerInput">
<summary>This represents the state of the marker input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.SineEncoderError">
<summary>An error condition is present on the Sine encoder input of the feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.CosineEncoderError">
<summary>An error condition is present on the Cosine encoder input of the feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.MarkerLatch">
<summary>The position of the marker is latched.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.EncoderClipping">
<summary>The on-board encoder multiplier detected that the input signals may be exceeding the maximum input range, which results in clipping of the encoder signals.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.MxQuadratureWarning">
<summary>The on-board encoder multiplier detected that the maximum quadrature generation rate has been exceeded.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.MxQuadratureError">
<summary>The on-board encoder multiplier detected that the quadrature generation logic has experienced overflow.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.DigitalCosineInput">
<summary>This represents the state of the square wave cosine input or the digital interpretation of the sine wave cosine input from the feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AuxiliaryFeedbackStatus.DigitalSineInput">
<summary>This represents the state of the square wave sine input or the digital interpretation of the sine wave sine input from the feedback device.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AmplifierStatus">
<summary>
Represents the amplifier status bits
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.Active">
<summary>The amplifier is active and outputting current to the attached motor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.NoMotorSupply">
<summary>The amplifier detected that no motor supply voltage is present.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.CurrentClamp">
<summary>The amplifier output is being clamped because the current command is more than the value of the MaxCurrentClamp parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.PowerLimitingA">
<summary>The amplifier power limiting on phase A has been active for an extended period. This causes an amplifier fault.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.PowerLimitingB">
<summary>The amplifier power limiting on phase B has been active for an extended period. This causes an amplifier fault.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.PowerLimitingC">
<summary>The amplifier power limiting on phase C has been active for an extended period. This causes an amplifier fault.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.PowerLimitingAUnfiltered">
<summary>The amplifier output on phase A is being limited to prevent damage to the hardware.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.PowerLimitingBUnfiltered">
<summary>The amplifier output on phase B is being limited to prevent damage to the hardware.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.PowerLimitingCUnfiltered">
<summary>The amplifier output on phase C is being limited to prevent damage to the hardware.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.BusOverVoltage">
<summary>The amplifier bus voltage is more than the maximum rated value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.VoltageClamped">
<summary>The amplifier output on one or more phases is being clamped to the minimum or maximum voltage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AmplifierStatus.ShuntOn">
<summary>The amplifier shunt circuit is active to keep the internal bus voltage within safe levels.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SsiStatus">
<summary>
Represents the SSI status for a feedback input.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SsiStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SsiStatus.TimeoutError">
<summary>The encoder did not respond in the necessary time interval.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SsiStatus.ParityError">
<summary>The parity calculated by the drive does not agree with the parity bit sent by the encoder.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GalvoScannerInterface">
<summary>
Represents the selected galvo scanner interface protocol
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoScannerInterface.None">
<summary>None</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoScannerInterface.XY2100">
<summary>XY2-100</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoScannerInterface.XY2100CustomVariant">
<summary>XY2-100 (Custom Variant)</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoScannerInterface.XY3100TwentyBit">
<summary>XY3-100 (20-bit)</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisType">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisType.Dominant">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisType.Dependent">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.YesOrNo">
<summary>
A selection of either yes or no.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.YesOrNo.No">
<summary>No.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.YesOrNo.Yes">
<summary>Yes.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HarmonicCancellationInputType">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HarmonicCancellationInputType.Frequency">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HarmonicCancellationInputType.Position">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HarmonicCancellationPositionInput">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HarmonicCancellationPositionInput.PositionCommand">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HarmonicCancellationPositionInput.PrimaryFeedback">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HarmonicCancellationPositionInput.AuxiliaryFeedback">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RolloverMode">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RolloverMode.DoNotMoveShortestDistance">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.RolloverMode.MoveShortestDistance">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DefaultTaskMotionMode">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DefaultTaskMotionMode.RapidG0">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DefaultTaskMotionMode.LinearG1">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DefaultTaskMotionMode.CwCircleG2">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DefaultTaskMotionMode.CcwCircleG3">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PrimaryUnitsMapping">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryUnitsMapping.Metric">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PrimaryUnitsMapping.English">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskTargetMode">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskTargetMode.Incremental">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskTargetMode.Absolute">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisRampType">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisRampType.Linear">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisRampType.Sinusoidal">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MotionInterpolationMode">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotionInterpolationMode.TwoPositionTwoVelocity">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MotionInterpolationMode.ThreePositionOnevelocity">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SignalLogTasks">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.ReservedTask">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task1">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task2">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task3">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task4">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task5">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task6">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task7">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task8">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task9">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task10">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task11">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task12">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task13">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task14">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task15">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task16">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task17">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task18">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task19">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task20">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task21">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task22">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task23">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task24">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task25">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task26">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task27">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task28">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task29">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task30">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SignalLogTasks.Task31">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.VirtualDriveRampMode">
<summary>
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.VirtualDriveRampMode.Servo">
<summary></summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.VirtualDriveRampMode.Galvo">
<summary></summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HyperWireExternalSynchronizationSignal">
<summary>
Specifies the external signal with which to externally synchronize HyperWire.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireExternalSynchronizationSignal.None">
<summary>External synchronization is disabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HyperWireExternalSynchronizationSignal.EthercatSync0">
<summary>External synchronization is enabled with the EtherCAT SYNC0 signal.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EncoderConnectorStatus">
<summary>
Represents encoder connector status.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderConnectorStatus.None">
<summary>No bits set.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderConnectorStatus.QuadratureWarning">
<summary>Drive encoder output logic exceeded the maximum speed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EncoderConnectorStatus.QuadratureError">
<summary>Overflow occurred in the drive encoder output logic.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AeroScriptSocketType">
<summary>
Represents AeroScript socket types.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AeroScriptSocketType.TcpConnectionSocket">
<summary>Socket used to send and receive data over TCP (TCP client).</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AeroScriptSocketType.TcpListenerSocket">
<summary>Socket used to listen for incoming TCP connections (TCP server).</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MessageLogSeverity">
<summary>
Represents the severity of a message in the Message Log.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageLogSeverity.Debug">
<summary>The message contains debug.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageLogSeverity.Information">
<summary>The message contains information.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageLogSeverity.Warning">
<summary>The message contains a warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MessageLogSeverity.Error">
<summary>The message contains an error.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SocketByteOrder">
<summary>
Represents the byte order of the data of an AeroScript socket.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SocketByteOrder.LittleEndian">
<summary>Little-endian byte order.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SocketByteOrder.BigEndian">
<summary>Big-endian byte order.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.EnhancedScannerControlOption">
<summary>
Represents the Enhanced Scanner Control option on the drive.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnhancedScannerControlOption.NotSupported">
<summary>Enhanced Scanner Control option not supported.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnhancedScannerControlOption.ESC0">
<summary>Enhanced Scanner Control is disabled.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnhancedScannerControlOption.ESC1">
<summary>Enhanced Scanner Control is enabled for HPO scanners.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.EnhancedScannerControlOption.ESC2">
<summary>Enhanced Scanner Control is enabled for XPO scanners.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode">
<summary>
Represents the delay mode for the PSO waveform module when you use the external synchronization signal.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode.AfterExternalSync">
<summary>Applies the fixed delay after waiting for the rising edge of the external synchronization signal.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.PsoWaveformExternalSyncDelayMode.BeforeExternalSync">
<summary>Applies the fixed delay after a PSO event occurs but before waiting for the rising edge of the external synchronization signal.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.NumberBase">
<summary>
Represents the number base representation when converting an integer to string.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.NumberBase.Decimal">
<summary>Base-10 representation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.NumberBase.Binary">
<summary>Base-2 representation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.NumberBase.Octal">
<summary>Base-8 representation.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.NumberBase.Hexadecimal">
<summary>Base-16 representation.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfigurableRegionFeatureCode">
<summary>
Represents the feature codes for the configurable region.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurableRegionFeatureCode.None">
<summary>None</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurableRegionFeatureCode.DriveArrayWrite">
<summary>Drive Array Write</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurableRegionFeatureCode.FeedforwardGainAff">
<summary>FeedforwardGainAff</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurableRegionFeatureCode.FeedforwardGainVff">
<summary>FeedforwardGainVff</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurableRegionFeatureCode.DriveArrayRead">
<summary>Drive Array Read</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ConfigurableRegionFeatureCode.FeatureCodeCount">
<summary>Feature code count. This must always be 1 greater than the highest feature code.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TransformationEnableMode">
<summary>
Represents the behavior of position signals of axes when a transformation is enabled.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TransformationEnableMode.ComputeAutomaticOffset">
<summary>Applies an offset to each transformation output axis. The offset equals the difference between the original position and the new transformed position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TransformationEnableMode.UpdateProgramPosition">
<summary>Updates the program position signals of each transformation input axis to be the forward transformed value of the current position.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TransformationExecutionOrder">
<summary>
Represents the execution order of these features.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TransformationExecutionOrder.MatrixCIfov">
<summary>Applies Matrix Transformations, then C Transformations, and then IFOV.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TransformationExecutionOrder.MatrixIfovC">
<summary>Applies Matrix Transformations, then IFOV, and then C Transformations.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode">
<summary>
Galvo echo opcodes (expect something back from the galvo drive).
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.NullCommand">
<summary>Null command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.GetCalibrationState">
<summary>Get calibration state.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.GetPowerCorrectionState">
<summary>Get power correction state.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetLaserOnDelay">
<summary>Set laser on delay.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetLaserOffDelay">
<summary>Set laser off delay.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetLaserMode">
<summary>Set laser mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetLaserOutputPeriod">
<summary>Set laser output period.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetLaser1PulseWidth">
<summary>Set laser 1 pulse width.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetLaser2PulseWidth">
<summary>Set laser 2 pulse width.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetLaserSuppressionPulseWidth">
<summary>Set laser suppression pulse width.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetStandbyPeriod">
<summary>Set standby period.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetStandbyPulseWidth">
<summary>Set standby pulse width.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetEncoderScaleFactor">
<summary>Set encoder scale factor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.SetIfovScaleFactor">
<summary>Set IFOV scale factor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.GalvoConfigureCommandSubcode.MaxCommandCode">
<summary>Max command code.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HostAddressType">
<summary>
Represents the expected address type that a hostname will resolve into.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HostAddressType.Any">
<summary>The host address could resolve into an IPv6 or IPv4 address.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HostAddressType.IPv4">
<summary>The host address will resolve into an IPv4 address.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.HostAddressType.IPv6">
<summary>The host address will resolve into an IPv6 address.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveEncoderChannel">
<summary>
Represents drive encoder channels that contain a hardware counter you can set.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveEncoderChannel.AuxiliaryEncoder">
<summary>Auxiliary channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveEncoderChannel.SyncPortA">
<summary>Sync Port A channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveEncoderChannel.SyncPortB">
<summary>Sync Port B channel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveEncoderChannel.HighSpeedOutputs">
<summary>High Speed Output channel.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ErrorInformation">
<summary>
Represents an error or warning from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.#ctor(System.Int32,System.String)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ErrorInformation.Error">
<summary>
Gets the identification number for this error or warning.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ErrorInformation.Message">
<summary>
Gets the string message of this error or warning.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.CreateFromErrorId(System.Int32)">
<summary>
Returns a new <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/> for the specified error number, or null if error is zero (no error).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.CreateFromRequestException(Aerotech.Automation1.Communication.RequestException)">
<summary>
Returns a new <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/> for the specified <see cref="T:Aerotech.Automation1.Communication.RequestException"/>, or null if there is no error.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.CreateFromControllerException(Aerotech.Automation1.ControllerException)">
<summary>
Returns a new <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/> for the specified <see cref="T:Aerotech.Automation1.ControllerException"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.op_Equality(Aerotech.Automation1.DotNet.ErrorInformation,Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Determines whether the specified <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/> objects are equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.op_Inequality(Aerotech.Automation1.DotNet.ErrorInformation,Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Determines whether the specified <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/> objects are not equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.GetHashCode">
<summary>
Returns a hash code for this <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.Equals(System.Object)">
<summary>
Determines whether the specified object is equal to this <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.Equals(Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Determines whether the specified <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/> is equal to this <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ErrorInformation.ToString">
<summary>
Returns a string that represents this <see cref="T:Aerotech.Automation1.DotNet.ErrorInformation"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs">
<summary>
Provides data for events when the Automation1 controller's configuration changes.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.#ctor(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs"/>. Do not call this constructor directly. Instead see
<see cref="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateConfigurationChangedEventArgs(Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange)"/> on how to properly construct this event arg.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.ControllerName">
<summary>
Gets whether or not the configured Automation1 controller name changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.Parameters">
<summary>
Gets whether or not the configured parameters on the Automation1 controller changed and how they changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.HyperWireCommunication">
<summary>
Gets whether or not the configured HyperWire communication of the Automation1 controller changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.HyperWireCard">
<summary>
Gets whether or not the configured PCIe HyperWire card on the Automation1 controller changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.Calibration1DFile">
<summary>
Gets whether or not the configured 1D calibration file on the Automation1 controller changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.Calibration2DFile">
<summary>
Gets whether or not the configured 2D calibration file on the Automation1 controller changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.Galvo2DCalibrationFile">
<summary>
Gets whether or not the configured 2D galvo calibration file changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.GalvoPowerCorrectionFile">
<summary>
Gets whether or not the configured galvo power correction file on the Automation1 controller changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.ProgramAutomation">
<summary>
Gets whether or not program automation on the Automation1 controller has changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.ControllerStartUp">
<summary>
Gets whether or not controller start-up behavior on the Automation1 controller has changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.AccessControl">
<summary>
Gets whether or not access control on the Automation1 controller has changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.CTransformation">
<summary>
Gets whether or not C Transformation on the Automation1 controller has changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.MachineSetup">
<summary>
Gets whether or not machine setup on the Automation1 controller has changed and how it changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.AxesSettings">
<summary>
Gets whether or not axes settings on the Automation1 controller have changed and how they changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.ChecklistItems">
<summary>
Gets whether or not checklist items on the Automation1 controller have changed and how they changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.AeroScriptMappings">
<summary>
Gets whether or not AeroScript mappings on the Automation1 controller have changed and how they changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.MachineApps">
<summary>
Gets whether or not MachineApps on the Automation1 controller have changed and how they changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.AppAeroScriptMappings">
<summary>
Gets whether or not App AeroScript mappings on the Automation1 controller have changed and how they changed.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs.DataCollectionPresets">
<summary>
Gets whether or not data collection presets on the Automation1 controller have changed and how they changed.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerEventArgs">
<summary>
Provides data for events coming from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgs.#ctor(Aerotech.Automation1.DotNet.Controller)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ControllerEventArgs"/> object. Do not call this constructor directly. Instead see
<see cref="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateControllerEventArgs"/> on how to properly construct this event arg.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerEventArgs.Controller">
<summary>
Gets the Automation1 controller that raised the event.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerEventArgsCreator">
<summary>
A class designed to create event args that require a controller anywhere without directly passing a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> instance throughout the .NET API.
This helps limit the APIs in .NET so they can't use the <see cref="T:Aerotech.Automation1.DotNet.Controller"/> instance to do anything from anywhere. To create a controller exception
call one of the many "create" methods that are exposed through this class. The <see cref="T:Aerotech.Automation1.DotNet.Controller"/> reference will be passed to the contructor of the event args
for you.
</summary>
<remarks>
This object should only be constructed in one place: the constructor on <see cref="T:Aerotech.Automation1.DotNet.Controller"/> because that is the only time a <see cref="T:Aerotech.Automation1.DotNet.Controller"/>
object is available to pass to this classes constructor. No one else in the .NET API will ever use a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object directly and no one
else should construct this object.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.#ctor(Aerotech.Automation1.DotNet.Controller)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.ControllerEventArgsCreator"/> object. Do not call this constructor directly unless you are in the constructor of the <see cref="T:Aerotech.Automation1.DotNet.Controller"/>
class. Calling this constructor manually is an indication that something is wrong (e.g. you are passing a reference to <see cref="T:Aerotech.Automation1.DotNet.Controller"/> directly to some API in the
.NET API and you shouldn't be).
</summary>
<param name="parentController">The parent controller that all event args will be constructed with.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateControllerEventArgs">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ControllerEventArgs"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateExceptionOccurredEventArgs(System.Exception)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ExceptionOccurredEventArgs"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateControllerStoppedEventArgs(Aerotech.Automation1.Communication.ControllerState,Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ControllerStoppedEventArgs"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateControllerStateChangedEventArgs(Aerotech.Automation1.Communication.ControllerState,Aerotech.Automation1.Communication.ControllerState,Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ControllerStateChangedEventArgs"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateNewStatusRetrievedEventArgs(Aerotech.Automation1.DotNet.StatusItemConfiguration,Aerotech.Automation1.DotNet.StatusItemResults)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.NewStatusRetrievedEventArgs"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateControllerFilesChangedEventArgs(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.ControllerFileChange})">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ControllerFilesChangedEventArgs"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateConfigurationChangedEventArgs(Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange,Aerotech.Automation1.DotNet.ConfigurationChange)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ConfigurationChangedEventArgs"/> object.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerFilesChangedEventArgs">
<summary>
Provides data for events when a controller file changes on the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerFilesChangedEventArgs.#ctor(Aerotech.Automation1.DotNet.Controller,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.ControllerFileChange})">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ControllerFilesChangedEventArgs"/> object. Do not call this constructor directly. Instead see
<see cref="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateControllerFilesChangedEventArgs(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.ControllerFileChange})"/> on how to properly construct this event arg.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerFilesChangedEventArgs.Changes">
<summary>
The list of controller files that changed on the Automation1 controller and how they changed.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerStateChangedEventArgs">
<summary>
Provides data for events coming from an Automation1 controller when the controller changes state (start, stop, reset).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerStateChangedEventArgs.#ctor(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.ControllerState,Aerotech.Automation1.Communication.ControllerState,Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerStateChangedEventArgs.PreviousControllerState">
<summary>
Gets the previous controller state before this change.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerStateChangedEventArgs.CurrentControllerState">
<summary>
Gets the current controller state after this change.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerStateChangedEventArgs.Error">
<summary>
Get an error that may be associated with this state change. If there is no error then this is null.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerStoppedEventArgs">
<summary>
Provides data for events coming from an Automation1 controller when the controller stops. See <see cref="M:Aerotech.Automation1.DotNet.Controller.Stop"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerStoppedEventArgs.#ctor(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.Communication.ControllerState,Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerStoppedEventArgs.PreviousControllerState">
<summary>
Gets the previous controller state before it was stopped.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerStoppedEventArgs.Error">
<summary>
Get an error that might have caused the controller to stop. If this is null then there was no error and the controller was stopped gracefully.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ExceptionOccurredEventArgs">
<summary>
Provides event data when an exception occurs while using an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ExceptionOccurredEventArgs.#ctor(Aerotech.Automation1.DotNet.Controller,System.Exception)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ExceptionOccurredEventArgs"/> object. Do not call this constructor directly. Instead see
<see cref="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateExceptionOccurredEventArgs(System.Exception)"/> on how to properly construct this event arg.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ExceptionOccurredEventArgs.Exception">
<summary>
Gets the exception that was thrown while using the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.NewStatusRetrievedEventArgs">
<summary>
Provides event data when <see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> retrieves a new <see cref="T:Aerotech.Automation1.DotNet.StatusItemResults"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.NewStatusRetrievedEventArgs.#ctor(Aerotech.Automation1.DotNet.Controller,Aerotech.Automation1.DotNet.StatusItemConfiguration,Aerotech.Automation1.DotNet.StatusItemResults)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.NewStatusRetrievedEventArgs"/> object. Do not call this constructor directly. Instead see
<see cref="M:Aerotech.Automation1.DotNet.ControllerEventArgsCreator.CreateNewStatusRetrievedEventArgs(Aerotech.Automation1.DotNet.StatusItemConfiguration,Aerotech.Automation1.DotNet.StatusItemResults)"/> on how to properly construct this event arg.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.NewStatusRetrievedEventArgs.Configuration">
<summary>
Gets the configuration of status items that was used to retrieve status items from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.NewStatusRetrievedEventArgs.Results">
<summary>
Gets the results for status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisInput">
<summary>
An internal class the represents user input that, in the future, can be resolved into a valid axis on the
controller with the help of an <see cref="T:Aerotech.Automation1.DotNet.AxisSet"/>. See remarks.
</summary>
<remarks>
This is mainly useful for APIs that take in user input without a controller (i.e. status or data item
configuration) so you cannot validate axis names yet, but the API allows the user to specify either axis
name or axis index. This class wraps up either input and can be used in the future to validate either and
then give you the specific identifier you need. To resolve a future into an axis you will need an <see cref="T:Aerotech.Automation1.DotNet.AxisSet"/>.
Its important to know that comparing <see cref="T:Aerotech.Automation1.DotNet.AxisInput"/> will _not_ check to see if they resolve
into the same axis in the future but instead check to see if they have the same user input.
The intended usage is to create an instance with one of the From* static methods,
store the <see cref="T:Aerotech.Automation1.DotNet.AxisInput"/>, then later on when you are ready to do your work call one
of the To* instance methods for the identifier you need. Example:
AxisInput axisInput = AxisInput.FromAxisName("X");
int axisIndex = axisInput.ToAxisIndex(controller.AxisSet);
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.#ctor(System.String,System.Nullable{System.Int32})">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.FromAxisName(System.String)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.AxisInput"/> based on an axis name as input (to be validated and resolved into something else in the future).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.FromAxisIndex(System.Int32)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.AxisInput"/> based on an axis index as input (to be validated and resolved into something else in the future).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.ToAxisName(Aerotech.Automation1.DotNet.AxisSet)">
<summary>
Validates and resolves the stored user input (whatever it may be) to a valid axis name on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.ToAxisIndex(Aerotech.Automation1.DotNet.AxisSet)">
<summary>
Validates and resolves the stored user input (whatever it may be) to a valid axis index on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.GetHashCode">
<summary>
Returns a hash code for this instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.Equals(System.Object)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.Equals(Aerotech.Automation1.DotNet.AxisInput)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.op_Equality(Aerotech.Automation1.DotNet.AxisInput,Aerotech.Automation1.DotNet.AxisInput)">
<summary>
Determines whether the specified objects are equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisInput.op_Inequality(Aerotech.Automation1.DotNet.AxisInput,Aerotech.Automation1.DotNet.AxisInput)">
<summary>
Determines whether the specified objects are not equal to each other.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisSet">
<summary>
Represents the set of axes defined on a controller, with ways to validate axis name and axis index
and then convert between them. See remarks.
</summary>
<remarks>
The purpose behind this internal class is to be a centralized collection for the axes on
a controller. APIs should be written to use a set instead of directly using a <see cref="T:Aerotech.Automation1.DotNet.Controller"/>
object. This decouples the APIs from the controller making them cleaner and unit testable (a set can
easily be mocked). If an API needs to know about axes, it should consume a <see cref="T:Aerotech.Automation1.DotNet.AxisSet"/>.
This class should always be used instead of a class storing axes itself.
The <see cref="T:Aerotech.Automation1.DotNet.AxisInput"/> class requires an <see cref="T:Aerotech.Automation1.DotNet.AxisSet"/> to resolve its user input into an actual, valid controller axis.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.#ctor(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Constructor, taking in an sequence of axis names that are at the array index that matches their axis index.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisSet.Axes">
<summary>
Gets the list of axis names, which are at the array index that matches their axis index.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.GetMaxAxisCount">
<summary>
Returns the maximum number of axes supported on the controller.
</summary>
<remarks>
This doesn't return the theoretical maximum number of axes, this returns the specific maximum on the controller right now.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.ValidateAxisName(System.String)">
<summary>
Validates an axis name, throwing an exception if validation fails because it is not a correct axis on the controller.
</summary>
<remarks>
This doesn't check whether a theoretical axis name is valid, this checks whether a specific axis name is valid and exists on the controller right now.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.ValidateAxisIndex(System.Int32)">
<summary>
Validates an axis index, throwing an exception if validation fails because it is not a correct axis on the controller.
</summary>
<remarks>
This doesn't check whether a theoretical axis index is valid, this checks whether a specific axis index is valid and exists on the controller right now.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.GetAxisIndexFromAxisName(System.String)">
<summary>
Returns the corresponding axis index from the controller based on an axis name.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.GetAxisNameFromAxisIndex(System.Int32)">
<summary>
Returns the corresponding axis name from the controller based on an axis index.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.GetAxisIndicesFromAxisNames(System.String[])">
<summary>
Returns a list of axis indices from the controller based on the list of axis names.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisSet.GetAxisNamesFromAxisIndices(System.Int32[])">
<summary>
Returns a list axis names from the controller based on the list of axis indices.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache">
<summary>
Represents a cache of all the AeroScript program source files and compiled AeroScript libraries that
should be provided to the AeroScript compiler during compilation, for any and all AeroScript compilations.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache.#ctor(System.Collections.Generic.List{System.Tuple{System.String,System.Byte[]}},System.Collections.Generic.List{System.Tuple{System.String,System.Byte[]}})">
<summary>
Constructs an instance of <see cref="T:Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache"/> which stores all the AeroScript program source files
and compiled AeroScript libraries that should be provided to the AeroScript compiler during compilation.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache.ProgramSourceFilesToInclude">
<summary>
Gets the AeroScript program source files to provide to the AeroScript compiler during compilation.
This property contains the names and content of the program source files.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CompilerIncludeAndImportCache.CompiledLibrariesToImport">
<summary>
Gets the compiled AeroScript libraries to provide to the AeroScript compiler during compilation.
This property contains the names and binary content of the compiled libraries.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Constants">
<summary>
Various internal constants.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.MaxTheoreticalAxisCount">
<summary>
Gets the theoretical maximum number of supported axes for any type of Automation1 controller.
This is always 32, no Automation1 controller type supports more than 32 axes.
An axis index must be below this number, i.e.: [0, <see cref="P:Aerotech.Automation1.DotNet.Constants.MaxTheoreticalAxisCount"/>).
There may be fewer supported axes depending on the type of controller (i.e. drive-based), but never more than this.
You probably shouldn't use this property and instead get the actual number of supported axes from the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.MaxTheoreticalTaskCount">
<summary>
Gets the theoretical maximum number of supported tasks for any type of Automation1 controller.
This is always 32, no Automation1 controller type supports more than 32 tasks.
A task index must be below this number, i.e.: [0, <see cref="P:Aerotech.Automation1.DotNet.Constants.MaxTheoreticalTaskCount"/>).
There may be fewer supported tasks depending on the type of controller (i.e. drive-based), but never more than this.
You probably shouldn't use this property and instead get the actual number of supported tasks from the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.MaxPcBasedAxisCount">
<summary>
Gets the maximum number of supported axes for a PC-Based controller.
You probably shouldn't use this property and instead get the actual number of supported axes from the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.MaxPcBasedTaskCount">
<summary>
Gets the maximum number of supported tasks for a PC-Based controller.
You probably shouldn't use this property and instead get the actual number of supported axes from the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.MaxDriveBasedAxisCount">
<summary>
Gets the maximum number of supported axes for a Drive-Based controller.
You probably shouldn't use this property and instead get the actual number of supported axes from the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.MaxDriveBasedTaskCount">
<summary>
Gets the maximum number of supported axes for a Drive-Based controller.
You probably shouldn't use this property and instead get the actual number of supported axes from the controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.ReservedTaskIndex">
<summary>
Gets the task index for the reserved task which is not usable be users. This may be null. If this is null, it does not mean there is no reserved task, instead
it means this instance of the .NET API is authorized to use the reserved task.
Automation1 Studio will set this to null to remove the reserved task restriction because the 0th task is reserved for the Studio itself.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.DefaultTaskIndex">
<summary>
Gets the index of the default task to be used when a task is not specified by the user.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.DriveBasedControllerUsbIpAddress">
<summary>
Gets the IP address used to connect to an Automation1 drive-based controller over USB.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SoftwareVersion">
<summary>
Gets the software version of this running library.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.McdConfigurationFileZipPath">
<summary>
Gets the location of where config files go in the compressed .mcd zip file format.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.McdUserFileZipPath">
<summary>
Gets the location of where user files go in the compressed .mcd zip file format.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.McdDataFileZipPath">
<summary>
Gets the location of where data files go in the compressed .mcd zip file format.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.McdInformationFileName">
<summary>
Gets the name of the XML file containing MCD specific information like version info.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.McdFileExtension">
<summary>
Gets the name of the file extension of MCD files.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleParametersVersion">
<summary>
Gets the oldest compatible parameters version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleHyperWireCardFileVersion">
<summary>
Gets the oldest compatible HyperWire card file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleHyperWireCommunicationFileVersion">
<summary>
Gets the oldest compatible HyperWire communication file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleProgramAutomationFileVersion">
<summary>
Gets the oldest compatible program automation file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleControllerNameFileVersion">
<summary>
Gets the oldest compatible controller name file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleAccessControlFileVersion">
<summary>
Gets the oldest compatible access control file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleStartUpFileVersion">
<summary>
Gets the oldest compatible controller start-up file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleAeroScriptMappingsFileVersion">
<summary>
Gets the oldest compatible AeroScript mappings file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleMachineAppsFileVersion">
<summary>
Gets the oldest compatible MachineApps file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.OldestCompatibleMcdFileVersion">
<summary>
Gets the oldest compatible machine controller definition file version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedParametersSchemaVersion">
<summary>
Gets the supported parameters schema version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedHyperWireCardSchemaVersion">
<summary>
Gets the supported HyperWire card schema version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedHyperWireCommunicationSchemaVersion">
<summary>
Gets the supported HyperWire communication schema version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedProgramAutomationSchemaVersion">
<summary>
Gets the supported program automation schema version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedControllerNameSchemaVersion">
<summary>
Gets the supported controller name schema version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedAccessControlSchemaVersion">
<summary>
Gets the supported access control schema version that this version of the software can understand.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedStartUpSchemaVersion">
<summary>
Gets the supported controller start-up schema version that this version of the software can understand
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedAeroScriptMappingsSchemaVersion">
<summary>
Gets the supported AeroScript mappings schema version that this version of the software can understand
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedMachineAppsSchemaVersion">
<summary>
Gets the supported MachineApps schema version that this version of the software can understand
</summary>
<remarks>
MachineApps created using a version when the feature was in beta (2.2.x) will have a SchemaVersion of 1.0.0.0
This was bumped to 2.0.0.0 for the official release in 2.3 due to multiple compatibility breaks that prevent previous MachineApps from being used.
</remarks>
</member>
<member name="P:Aerotech.Automation1.DotNet.Constants.SupportedMcdSchemaVersion">
<summary>
Gets the supported machine controller definition schema version that this version of the software can understand.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerContext">
<summary>
An enumeration for use when you need to keep track of items that could belong to axis, task, or system contexts.
WARNING: Do _not_ use these values outside of this library (i.e. do not pass them into a request to the controller or use them in other libraries).
</summary>
<remarks>The values are deliberately huge to make sure they can't be accidentally used in a controller request.</remarks>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetHelpers">
<summary>
Helper class for calculating arguments for Industrial Ethernet mappings.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetHelpers.GetArgument(System.Int32,System.Int32,Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.EthercatMappingDataType,System.Int32,System.Int32)">
<summary>
Returns the argument for the Ethercat item with the given attributes.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetHelpers.GetArgument(System.Int32,System.Int32,Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings.ModbusRegisterDataType,System.Int32,System.Int32)">
<summary>
Returns the argument for the Modbus register with the given attributes.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MappedVariableCollection">
<summary>
A collection of <see cref="T:Aerotech.Automation1.DotNet.MappedVariable"/> instances.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.MappedVariableCollection.nameAndIndexToMapping">
<summary>
Maps the name/index of a mapped variable to a <see cref="T:Aerotech.Automation1.DotNet.MappedVariable"/> instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MappedVariableCollection.#ctor(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.MappedVariable})">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MappedVariableCollection.GetMappedVariable(System.String,System.Int32)">
<summary>
Gets a <see cref="T:Aerotech.Automation1.DotNet.MappedVariable"/> with the specified name and index. An index of -1 indicates that
the mapped variable is not part of an array.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MappedVariableCollection.CreateEmpty">
<summary>
Creates an empty <see cref="T:Aerotech.Automation1.DotNet.MappedVariableCollection"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MappedVariableCollection.CreateFrom(Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings)">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.MappedVariableCollection"/> populated with all mappings from the specified <see cref="T:Aerotech.Automation1.DotNet.ConfiguredAeroScriptMappings"/> instance.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MappedVariable">
<summary>
A mapped AeroScript variable.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MappedVariable.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MappedVariable.Name">
<summary>
Gets the name of this mapped variable.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MappedVariable.ArrayIndex">
<summary>
Gets the index of this mapped variable if it is a part of an array. If this mapped variable is not a part
of an array, this will return null.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MappedVariable.StatusItem">
<summary>
Gets the status item associated with this mapped variable.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MappedVariable.DataSignal">
<summary>
Gets the data signal associated with this mapped variable.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MappedVariable.Argument">
<summary>
Gets the argument that should be provided alongside the status item / data signal when
configuring this mapped variable for status or data collection.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.McdManager">
<summary>
A class to upload and download Machine Controller Definitions to and from the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.McdManager.#ctor(Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.McdManager.DownloadMcdToFile(System.String,System.Boolean,System.Boolean)">
<summary>
Downloads a machine controller definition (.mcd) file from the controller and saves it to the specified MDK file path.
A downloaded machine controller definition file can contain both controller configuration and controller files.
This file can be uploaded to any controller to copy this controller's configuration and files.
When using this method, at least one of the parameters shouldIncludeControllerFiles and shouldIncludeConfiguration must be true.
</summary>
<param name="mdkFilePathToMcd">The MDK file path to save the downloaded machine controller definition (.mcd) file at.</param>
<param name="shouldIncludeControllerFiles">Whether or not controller files should be included in the download.</param>
<param name="shouldIncludeConfiguration">Whether or not controller configuration should be included in the download.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.McdManager.UploadMcdToController(System.String,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Uploads the machine controller definition (.mcd) file to the controller from the specified MDK file path.
When using this method, at least one of the parameters shouldIncludeControllerFiles and shouldIncludeConfiguration must be true.
Before calling this method, make sure there is nothing important on the controller that could be overwritten
or erased. Consider downloading a machine controller definition file as a backup before uploading a different
machine controller definition that may overwrite data.
</summary>
<param name="mdkFilePathToMcd">The MDK file path of the machine controller definition to upload.</param>
<param name="shouldIncludeControllerFiles">Whether or not controller files should be included in the upload.</param>
<param name="shouldIncludeConfiguration">Whether or not controller configuration should be included in the upload.</param>
<param name="eraseController">Whether or not the controller should be erased before uploading the new files.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.McdManager.validateMcdFileVersion(System.IO.Compression.ZipArchiveEntry)">
<summary>
Verifies that the version information in the Mcd information XML file is correct. Throws exceptions if the Mcd
file doesn't exist or was created in a version that is not supported.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.McdManager.getFileDateTimeFromDateTimeOffset(System.DateTimeOffset)">
<summary>
Creates and returns an equivalent FileDateTime from the given DateTimeOffset.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.McdManager.getDateTimeOffsetFromFileDateTime(Aerotech.Automation1.Communication.FileDateTime)">
<summary>
Creates and returns an equivalent DateTimeOffset from the given FileDateTime.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RefreshableLazy`1">
<summary>
An internal class that contains a cached value that can be refreshed lazily. This object must be tied
to a <see cref="T:Aerotech.Automation1.DotNet.RefreshableLazyManager"/> if the ability to refresh is desired. Otherwise, the default
behavior is to just behave lazily; loading the cached value when first accessed and never refreshing.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RefreshableLazy`1.#ctor(Aerotech.Automation1.DotNet.RefreshableLazyManager,System.Func{`0})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.RefreshableLazy`1.Value">
<summary>
Gets the cached value. Each time this property is accessed, this object checks to see if it should
refresh the value that it is caching.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RefreshableLazy`1.Refresh">
<summary>
Refreshes this lazy, and only this lazy, so the next time <see cref="P:Aerotech.Automation1.DotNet.RefreshableLazy`1.Value"/> is accessed it will get a new value.
You probably don't want to call this, instead refresh the parent RefreshableLazyManager.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RefreshableLazyManager">
<summary>
An internal class that manages when <see cref="T:Aerotech.Automation1.DotNet.RefreshableLazy`1"/> objects need to be refreshed.
To create a <see cref="T:Aerotech.Automation1.DotNet.RefreshableLazy`1"/> object, see <see cref="M:Aerotech.Automation1.DotNet.RefreshableLazyManager.CreateRefreshableLazy``1(System.Func{``0})"/>.
All <see cref="T:Aerotech.Automation1.DotNet.RefreshableLazy`1"/> objects managed by this instance of <see cref="T:Aerotech.Automation1.DotNet.RefreshableLazyManager"/> will be refreshed
the next time they are accessed after <see cref="M:Aerotech.Automation1.DotNet.RefreshableLazyManager.Refresh"/> is called.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.RefreshableLazyManager.CurrentTick">
<summary>
Gets the current tick of the manager.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RefreshableLazyManager.Refresh">
<summary>
Refreshes all <see cref="T:Aerotech.Automation1.DotNet.RefreshableLazy`1"/> objects associated with this manager.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RefreshableLazyManager.CreateRefreshableLazy``1(System.Func{``0})">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.RefreshableLazy`1"/> and ties it to this manager.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.RequestHelper">
<summary>
An internal helper class to fetching various information from a controller via the appropriate requests.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetRuntimeTaskNames(Aerotech.Automation1.Communication.Requester,System.Int32)">
<summary>
Returns a list of task names for the specified controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetRuntimeAxisNames(Aerotech.Automation1.Communication.Requester,System.Int32)">
<summary>
Returns a list of axis names for the specified controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetAllHyperWireDevices(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.IAxisCollectionProvider)">
<summary>
Returns the collection of HyperWire devices connected to the specified controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetActiveHyperWireCard(Aerotech.Automation1.Communication.Requester)">
<summary>
Returns the active HyperWire card, or null if there is no active card in use.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetControllerUnitsParameters(Aerotech.Automation1.Communication.Requester,System.Int32,System.Boolean)">
<summary>
Returns all controller parameters required to convert the units of a status item or data signal as well as
the parameters required to determine the name of a status item' or data signal's units.
</summary>
<remarks>
This method gets both double parameters and string parameters from the controller. Be careful when you use it;
getting string parameters from the controller is not particularly performant and thus the
<paramref name="shouldGetStringParameters"/> parameter was added. Set that parameter to false to avoid getting
string parameters. Be aware that you won't be able to determine the name of the status item's or data signal's units
if you do so.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetCompilerIncludeAndImportCache(Aerotech.Automation1.Communication.Requester)">
<summary>
Returns all AeroScript program source files and compiled AeroScript libraries that should be automatically imported.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetHyperWireDeviceType(System.Int32,System.String@)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.HyperWireDeviceType"/> value for a HyperWire device type.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetHyperWireCardPort(System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.HyperWireCardPort"/> value for a port on a HyperWire card.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.ConvertIndicesToMask(System.Int32[])">
<summary>
Returns a uint mask that represents the series of indices being set.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.ConvertMaskToListOfIndices(System.UInt32)">
<summary>
Returns a list of index values that are set in the specified unsigned mask.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.GetListItemsForMask``1(System.Collections.Generic.IReadOnlyList{``0},System.UInt32)">
<summary>
Returns a list of items that are set in the specified unsigned mask, filtered from the input list of all items.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.ToVersion(Aerotech.Automation1.Communication.SoftwareVersion)">
<summary>
Converts a version coming from the request layer to a .NET <see cref="T:System.Version"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.ToStringArray(Aerotech.Automation1.Communication.StringValue[])">
<summary>
Converts a string array coming from the request layer to a .NET <see cref="T:System.String"/> array.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.RequestHelper.ToStringValueArray(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Converts a sequence of .NET strings to a request layer <see cref="T:Aerotech.Automation1.Communication.StringValue"/> array for sending over the a request.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskInput">
<summary>
An internal class the represents user input that, in the future, can be resolved into a valid task on the
controller with the help of a <see cref="T:Aerotech.Automation1.DotNet.TaskSet"/>. See remarks.
</summary>
<remarks>
This is mainly useful for APIs that take in user input without a controller (i.e. status or data item
configuration) so you cannot validate task names yet, but the API allows the user to specify either task
name or task index. This class wraps up either input and can be used in the future to validate either and
then give you the specific identifier you need. To resolve a future into a task you will need a <see cref="T:Aerotech.Automation1.DotNet.TaskSet"/>.
Its important to know that comparing <see cref="T:Aerotech.Automation1.DotNet.TaskInput"/> will _not_ check to see if they resolve
into the same task in the future but instead check to see if they have the same user input.
The intended usage is to create an instance with one of the From* static methods,
store the <see cref="T:Aerotech.Automation1.DotNet.TaskInput"/>, then later on when you are ready to do your work call one
of the To* instance methods for the identifier you need. Example:
TaskInput taskInput = TaskInput.FromTaskName("Task 1");
int taskIndex = taskInput.ToTaskIndex(controller.TaskSet);
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.#ctor(System.String,System.Nullable{System.Int32})">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.FromTaskName(System.String)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.TaskInput"/> based on a task name as input (to be validated and resolved into something else in the future).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.FromTaskIndex(System.Int32)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.TaskInput"/> based on a task index as input (to be validated and resolved into something else in the future).
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.ToTaskName(Aerotech.Automation1.DotNet.TaskSet)">
<summary>
Validates and resolves the stored user input (whatever it may be) to a valid task name on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.ToTaskIndex(Aerotech.Automation1.DotNet.TaskSet)">
<summary>
Validates and resolves the stored user input (whatever it may be) to a valid task index on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.GetHashCode">
<summary>
Returns a hash code for this instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.Equals(System.Object)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.Equals(Aerotech.Automation1.DotNet.TaskInput)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.op_Equality(Aerotech.Automation1.DotNet.TaskInput,Aerotech.Automation1.DotNet.TaskInput)">
<summary>
Determines whether the specified objects are equal to each other.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskInput.op_Inequality(Aerotech.Automation1.DotNet.TaskInput,Aerotech.Automation1.DotNet.TaskInput)">
<summary>
Determines whether the specified objects are not equal to each other.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskSet">
<summary>
Represents the set of tasks defined on a controller, with ways to validate task name and task index
and then convert between them. See remarks.
</summary>
<remarks>
The purpose behind this internal class is to be a centralized collection for the tasks on
a controller. APIs should be written to use a set instead of directly using a <see cref="T:Aerotech.Automation1.DotNet.Controller"/>
object. This decouples the APIs from the controller making them cleaner and unit testable (a set can
easily be mocked). If an API needs to know about tasks, it should consume a <see cref="T:Aerotech.Automation1.DotNet.TaskSet"/>.
This class should always be used instead of a class storing tasks itself.
The <see cref="T:Aerotech.Automation1.DotNet.TaskInput"/> class requires a <see cref="T:Aerotech.Automation1.DotNet.TaskSet"/> to resolve its user input into an actual, valid controller task.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.#ctor(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Constructor, taking in an sequence of task names that are at the array index that matches their task index.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskSet.Tasks">
<summary>
Gets the list of task names, which are at the array index that matches their task index.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.GetMaxTaskCount">
<summary>
Returns the maximum number of tasks supported on the controller.
</summary>
<remarks>
This doesn't return the theoretical maximum number of tasks, this returns the specific maximum on the controller right now.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.ValidateTaskName(System.String)">
<summary>
Validates a task name, throwing an exception if validation fails because it is not a correct task on the controller.
</summary>
<remarks>
This doesn't check whether a theoretical task name is valid, this checks whether a specific task name is valid and exists on the controller right now.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.ValidateTaskIndex(System.Int32)">
<summary>
Validates a task index, throwing an exception if validation fails because it is not a correct task on the controller.
</summary>
<remarks>
This doesn't check whether a theoretical task index is valid, this checks whether a specific task index is valid and exists on the controller right now.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.GetTaskIndexFromTaskName(System.String)">
<summary>
Returns the corresponding task index from the controller based on a task name.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.GetTaskNameFromTaskIndex(System.Int32)">
<summary>
Returns the corresponding task name from the controller based on a task index.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.GetTaskIndicesFromTaskNames(System.String[])">
<summary>
Returns a list of task indices from the controller based on the list of task names.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskSet.GetTaskNamesFromTaskIndices(System.Int32[])">
<summary>
Returns a list task names from the controller based on the list of task indices.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ZipHelper">
<summary>
A helper class to contain extension methods for working with <see cref="T:System.IO.Compression.ZipArchive"/> and <see cref="T:System.IO.Compression.ZipArchiveEntry"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ZipHelper.ReadFile(System.IO.Compression.ZipArchiveEntry)">
<summary>
Reads the file content of the specified <see cref="T:System.IO.Compression.ZipArchive"/> as a byte array.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ZipHelper.WriteFileToZip(System.IO.Compression.ZipArchive,System.String,System.Byte[])">
<summary>
Writes the content of a file to the output (<see cref="T:System.IO.Compression.ZipArchive"/>) as a byte array.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ZipHelper.WriteFileToZip(System.IO.Compression.ZipArchive,System.String,System.Byte[],System.DateTimeOffset)">
<summary>
Writes the content of a file to the output (<see cref="T:System.IO.Compression.ZipArchive"/>) as a byte array.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ActiveParameters">
<summary>
A class to get and set active controller parameters in use by an Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
<remarks>
Changes to active controller parameters are not persisted and the active controller parameter values are lost after a controller reset.
To save controller parameters permanently use <see cref="P:Aerotech.Automation1.DotNet.Controller.Configuration"/>.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.ActiveParameters.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet},System.Int32)">
<summary>
Constructs an instance of <see cref="T:Aerotech.Automation1.DotNet.ActiveParameters"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ActiveParameters.System">
<summary>
Gets all controller parameters in the system parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ActiveParameters.Axes">
<summary>
Gets the collection of controller parameters in the axis parameter category for each axis.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ActiveParameters.Tasks">
<summary>
Gets the collection of controller parameters in the task parameter category for each task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ActiveParameters.getActiveParameter(Aerotech.Automation1.DotNet.Parameter)">
<summary>
Gets the value of an active controller parameter in use by the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ActiveParameters.getActiveStringParameter(Aerotech.Automation1.DotNet.Parameter)">
<summary>
Gets the value of an active controller parameter in use by the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ActiveParameters.getActiveNumericParmaeter(Aerotech.Automation1.DotNet.Parameter)">
<summary>
Gets the value of an active controller parameter in use by the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ActiveParameters.setActiveParameter(Aerotech.Automation1.DotNet.Parameter,System.Object)">
<summary>
Sets the value of an active controller parameter in use by the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ActiveParameters.setActiveStringParameter(Aerotech.Automation1.DotNet.Parameter,System.Object)">
<summary>
Sets the value of an active controller parameter in use by the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ActiveParameters.setActiveNumericParameter(Aerotech.Automation1.DotNet.Parameter,System.Object)">
<summary>
Sets the value of an active controller parameter in use by the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IParameterCategory">
<summary>
Represents a specific category of controller parameters (system, axis, or task).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IParameterCategory.AllParameters">
<summary>
Gets all controller parameters that belong to this category (system, axis, or task).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IParameterCategory.Item(System.String)">
<summary>
Gets a controller parameter by case-insensitive name.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IParameterCategory.GetByNumericId(System.Int32)">
<summary>
Gets a controller parameter by numeric ID.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisParameterCategoryCollection">
<summary>
Represents a collection of controller parameters in the axis parameter category for each axis.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisParameterCategoryCollection.#ctor(Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategoryCollection.Count">
<summary>
Gets the number of axes that have parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategoryCollection.Item(System.Int32)">
<summary>
Gets all controller parameters in the axis parameter category for the specified axis.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategoryCollection.Item(System.String)">
<summary>
Gets all controller parameters in the axis parameter category for the specified axis.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisParameterCategoryCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the axes that have parameters.
</summary>
<returns>An enumerator that can be used to iterate through the axes that have parameters.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisParameterCategoryCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the axes that have parameters.
</summary>
<returns>An enumerator that can be used to iterate through the axes that have parameters.</returns>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskParameterCategoryCollection">
<summary>
Represents a collection of controller parameters in the task parameter category for each task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskParameterCategoryCollection.#ctor(Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet},System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategoryCollection.Count">
<summary>
Gets the number of tasks that have parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategoryCollection.Item(System.Int32)">
<summary>
Gets all controller parameters in the task parameter category for the specified task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategoryCollection.Item(System.String)">
<summary>
Gets all controller parameters in the task parameter category for the specified task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskParameterCategoryCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the tasks that have parameters.
</summary>
<returns>An enumerator that can be used to iterate through the tasks that have parameters.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskParameterCategoryCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the tasks that have parameters.
</summary>
<returns>An enumerator that can be used to iterate through the tasks that have parameters.</returns>
</member>
<member name="T:Aerotech.Automation1.DotNet.ParameterGroup">
<summary>
Represents a controller parameter group which contains controller parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ParameterGroup.AllParameters">
<summary>
Gets all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ParameterConstants">
<summary>
An internal helper class for constants related to controller parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ParameterConstants.DefaultAxisNames">
<summary>
Gets the list of default names for each axis.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ParameterConstants.DefaultTaskNames">
<summary>
Gets the list of default names for each task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemParameterId">
<summary>
Represents a controller parameter in the system parameter category.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.DataCollectionPoints">
<summary>The DataCollectionPoints system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.DataCollectionItems">
<summary>The DataCollectionItems system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalReals">
<summary>The GlobalReals system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.AsciiInterfacePort">
<summary>The AsciiInterfacePort system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.AsciiInterfaceSetup">
<summary>The AsciiInterfaceSetup system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.RequiredAxes">
<summary>The RequiredAxes system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.AsciiInterfaceTerminatingCharacter">
<summary>The AsciiInterfaceTerminatingCharacter system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.AsciiInterfaceSuccessCharacter">
<summary>The AsciiInterfaceSuccessCharacter system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.AsciiInterfaceInvalidCharacter">
<summary>The AsciiInterfaceInvalidCharacter system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.AsciiInterfaceFaultCharacter">
<summary>The AsciiInterfaceFaultCharacter system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalStrings">
<summary>The GlobalStrings system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.DependentSpeedScaleFactor">
<summary>The DependentSpeedScaleFactor system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SecondaryUnitsScaleFactor">
<summary>The SecondaryUnitsScaleFactor system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.PrimaryUnitsMapping">
<summary>The PrimaryUnitsMapping system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SecondaryUnitsName">
<summary>The SecondaryUnitsName system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.EnabledTasks">
<summary>The EnabledTasks system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.FaultAckMoveOutOfLimit">
<summary>The FaultAckMoveOutOfLimit system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SoftwareExternalFaultInput">
<summary>The SoftwareExternalFaultInput system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogSetup">
<summary>The SignalLogSetup system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogAxes">
<summary>The SignalLogAxes system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogTasks">
<summary>The SignalLogTasks system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogFaultMaskTrigger">
<summary>The SignalLogFaultMaskTrigger system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogSamplePeriod">
<summary>The SignalLogSamplePeriod system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogPointsBeforeTrigger">
<summary>The SignalLogPointsBeforeTrigger system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogPointsAfterTrigger">
<summary>The SignalLogPointsAfterTrigger system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.IfovConfigurations">
<summary>The IfovConfigurations system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.IfovMaximumTime">
<summary>The IfovMaximumTime system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SignalLogItems">
<summary>The SignalLogItems system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalIntegers">
<summary>The GlobalIntegers system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.TransformationEnableMode">
<summary>The TransformationEnableMode system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.SoftwareEmergencyStopInput">
<summary>The SoftwareEmergencyStopInput system controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemParameterId.TransformationExecutionOrder">
<summary>The TransformationExecutionOrder system controller parameter.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemParameterCategory">
<summary>
Contains all controller parameters in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemParameterCategory.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.AllParameters">
<summary>
Gets a list of all controller parameters in all controller parameter groups in the system parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.AllGroups">
<summary>
Gets a list of all controller parameter groups in the system parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.Item(Aerotech.Automation1.DotNet.SystemParameterId)">
<summary>
Gets a controller parameter by ID.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.Item(System.String)">
<summary>
Gets a controller parameter by case-insensitive name.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.Communication">
<summary>
Gets the Communication controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.DataCollection">
<summary>
Gets the DataCollection controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.Deprecated">
<summary>
Gets the Deprecated controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.IFOV">
<summary>
Gets the IFOV controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.MotionHealth">
<summary>
Gets the MotionHealth controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.Programming">
<summary>
Gets the Programming controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.Protection">
<summary>
Gets the Protection controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParameterCategory.Transformation">
<summary>
Gets the Transformation controller parameter group.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemParameterCategory.Aerotech#Automation1#DotNet#IParameterCategory#GetByNumericId(System.Int32)">
<summary>
Gets a controller parameter by numeric ID.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisParameterId">
<summary>
Represents a controller parameter in the axis parameter category.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AxisName">
<summary>The AxisName axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AxisType">
<summary>The AxisType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ReverseMotionDirection">
<summary>The ReverseMotionDirection axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CountsPerUnit">
<summary>The CountsPerUnit axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopSetup">
<summary>The ServoLoopSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardGainVff">
<summary>The FeedforwardGainVff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardGainAff">
<summary>The FeedforwardGainAff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainKv">
<summary>The ServoLoopGainKv axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter00CoeffN0">
<summary>The ServoLoopFilter00CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter00CoeffN1">
<summary>The ServoLoopFilter00CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter00CoeffN2">
<summary>The ServoLoopFilter00CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter00CoeffD1">
<summary>The ServoLoopFilter00CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter00CoeffD2">
<summary>The ServoLoopFilter00CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter01CoeffN0">
<summary>The ServoLoopFilter01CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter01CoeffN1">
<summary>The ServoLoopFilter01CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter01CoeffN2">
<summary>The ServoLoopFilter01CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter01CoeffD1">
<summary>The ServoLoopFilter01CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter01CoeffD2">
<summary>The ServoLoopFilter01CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.RolloverCounts">
<summary>The RolloverCounts axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentLoopGainKi">
<summary>The CurrentLoopGainKi axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentLoopGainK">
<summary>The CurrentLoopGainK axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultMask">
<summary>The FaultMask axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultMaskDisable">
<summary>The FaultMaskDisable axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultMaskDecel">
<summary>The FaultMaskDecel axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.BrakeSetup">
<summary>The BrakeSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultMaskOutput">
<summary>The FaultMaskOutput axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EmergencyStopFaultInput">
<summary>The EmergencyStopFaultInput axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PositionErrorThreshold">
<summary>The PositionErrorThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AverageCurrentThreshold">
<summary>The AverageCurrentThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AverageCurrentTime">
<summary>The AverageCurrentTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.VelocityCommandThreshold">
<summary>The VelocityCommandThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.VelocityErrorThreshold">
<summary>The VelocityErrorThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.SoftwareLimitLow">
<summary>The SoftwareLimitLow axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.SoftwareLimitHigh">
<summary>The SoftwareLimitHigh axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MaxCurrentClamp">
<summary>The MaxCurrentClamp axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.InPositionDistance">
<summary>The InPositionDistance axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MotorType">
<summary>The MotorType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommutationOffset">
<summary>The CommutationOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutoMsetTime">
<summary>The AutoMsetTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutoMsetCurrent">
<summary>The AutoMsetCurrent axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryFeedbackType">
<summary>The PrimaryFeedbackType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedbackInput0">
<summary>The FeedbackInput0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryFeedbackType">
<summary>The AuxiliaryFeedbackType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedbackInput1">
<summary>The FeedbackInput1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoderMultiplicationFactor">
<summary>The PrimaryEncoderMultiplicationFactor axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder0SineGain">
<summary>The PrimaryEncoder0SineGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder0SineOffset">
<summary>The PrimaryEncoder0SineOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder0CosineGain">
<summary>The PrimaryEncoder0CosineGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder0CosineOffset">
<summary>The PrimaryEncoder0CosineOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder0Phase">
<summary>The PrimaryEncoder0Phase axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.LimitDecelDistance">
<summary>The LimitDecelDistance axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.LimitDebounceTime">
<summary>The LimitDebounceTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EndOfTravelLimitSetup">
<summary>The EndOfTravelLimitSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.BacklashDistance">
<summary>The BacklashDistance axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultOutputSetup">
<summary>The FaultOutputSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultOutputState">
<summary>The FaultOutputState axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.IOSetup">
<summary>The IOSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.BrakeOutput">
<summary>The BrakeOutput axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ExternalFaultDigitalInput">
<summary>The ExternalFaultDigitalInput axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.BrakeDisableDelay">
<summary>The BrakeDisableDelay axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MaxJogDistance">
<summary>The MaxJogDistance axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.DefaultAxisSpeed">
<summary>The DefaultAxisSpeed axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.DefaultAxisRampRate">
<summary>The DefaultAxisRampRate axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AbortDecelRate">
<summary>The AbortDecelRate axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HomeType">
<summary>The HomeType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HomeSetup">
<summary>The HomeSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HomeSpeed">
<summary>The HomeSpeed axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HomeOffset">
<summary>The HomeOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HomeRampRate">
<summary>The HomeRampRate axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.StepperMicrostepsPerStep">
<summary>The StepperMicrostepsPerStep axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.StepperRunningCurrent">
<summary>The StepperRunningCurrent axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.StepperHoldingCurrent">
<summary>The StepperHoldingCurrent axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.LimitDebounceDistance">
<summary>The LimitDebounceDistance axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter02CoeffN0">
<summary>The ServoLoopFilter02CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter02CoeffN1">
<summary>The ServoLoopFilter02CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter02CoeffN2">
<summary>The ServoLoopFilter02CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter02CoeffD1">
<summary>The ServoLoopFilter02CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter02CoeffD2">
<summary>The ServoLoopFilter02CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter03CoeffN0">
<summary>The ServoLoopFilter03CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter03CoeffN1">
<summary>The ServoLoopFilter03CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter03CoeffN2">
<summary>The ServoLoopFilter03CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter03CoeffD1">
<summary>The ServoLoopFilter03CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter03CoeffD2">
<summary>The ServoLoopFilter03CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MaxJogSpeed">
<summary>The MaxJogSpeed axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.UnitsName">
<summary>The UnitsName axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEnDatEncoderSetup">
<summary>The PrimaryEnDatEncoderSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEnDatEncoderResolution">
<summary>The PrimaryEnDatEncoderResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEnDatEncoderTurns">
<summary>The PrimaryEnDatEncoderTurns axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.JoystickLowSpeed">
<summary>The JoystickLowSpeed axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.JoystickHighSpeed">
<summary>The JoystickHighSpeed axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HomePositionSet">
<summary>The HomePositionSet axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultMaskDisableDelay">
<summary>The FaultMaskDisableDelay axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAbortAxes">
<summary>The FaultAbortAxes axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation0Type">
<summary>The HarmonicCancellation0Type axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation0Period">
<summary>The HarmonicCancellation0Period axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation0Input">
<summary>The HarmonicCancellation0Input axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation0Gain">
<summary>The HarmonicCancellation0Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation1Type">
<summary>The HarmonicCancellation1Type axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation1Period">
<summary>The HarmonicCancellation1Period axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation1Input">
<summary>The HarmonicCancellation1Input axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation1Gain">
<summary>The HarmonicCancellation1Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation2Type">
<summary>The HarmonicCancellation2Type axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation2Period">
<summary>The HarmonicCancellation2Period axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation2Input">
<summary>The HarmonicCancellation2Input axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation2Gain">
<summary>The HarmonicCancellation2Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.SoftwareLimitSetup">
<summary>The SoftwareLimitSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEmulatedQuadratureDivider">
<summary>The PrimaryEmulatedQuadratureDivider axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation3Type">
<summary>The HarmonicCancellation3Type axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation3Period">
<summary>The HarmonicCancellation3Period axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation3Input">
<summary>The HarmonicCancellation3Input axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation3Gain">
<summary>The HarmonicCancellation3Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation4Type">
<summary>The HarmonicCancellation4Type axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation4Period">
<summary>The HarmonicCancellation4Period axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation4Input">
<summary>The HarmonicCancellation4Input axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellation4Gain">
<summary>The HarmonicCancellation4Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EnhancedThroughputChannel">
<summary>The EnhancedThroughputChannel axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EnhancedThroughputGain">
<summary>The EnhancedThroughputGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.HarmonicCancellationSetup">
<summary>The HarmonicCancellationSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EnhancedThroughputCurrentClamp">
<summary>The EnhancedThroughputCurrentClamp axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter0CoeffN0">
<summary>The Analog0Filter0CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter0CoeffN1">
<summary>The Analog0Filter0CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter0CoeffN2">
<summary>The Analog0Filter0CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter0CoeffD1">
<summary>The Analog0Filter0CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter0CoeffD2">
<summary>The Analog0Filter0CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter1CoeffN0">
<summary>The Analog0Filter1CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter1CoeffN1">
<summary>The Analog0Filter1CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter1CoeffN2">
<summary>The Analog0Filter1CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter1CoeffD1">
<summary>The Analog0Filter1CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0Filter1CoeffD2">
<summary>The Analog0Filter1CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter0CoeffN0">
<summary>The Analog1Filter0CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter0CoeffN1">
<summary>The Analog1Filter0CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter0CoeffN2">
<summary>The Analog1Filter0CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter0CoeffD1">
<summary>The Analog1Filter0CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter0CoeffD2">
<summary>The Analog1Filter0CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter1CoeffN0">
<summary>The Analog1Filter1CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter1CoeffN1">
<summary>The Analog1Filter1CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter1CoeffN2">
<summary>The Analog1Filter1CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter1CoeffD1">
<summary>The Analog1Filter1CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1Filter1CoeffD2">
<summary>The Analog1Filter1CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.DefaultAxisRampMode">
<summary>The DefaultAxisRampMode axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.DefaultAxisRampTime">
<summary>The DefaultAxisRampTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilterSetup">
<summary>The ServoLoopFilterSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedbackSetup">
<summary>The FeedbackSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoderMultiplierSetup">
<summary>The PrimaryEncoderMultiplierSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultSetup">
<summary>The FaultSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter04CoeffN0">
<summary>The ServoLoopFilter04CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter04CoeffN1">
<summary>The ServoLoopFilter04CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter04CoeffN2">
<summary>The ServoLoopFilter04CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter04CoeffD1">
<summary>The ServoLoopFilter04CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter04CoeffD2">
<summary>The ServoLoopFilter04CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter05CoeffN0">
<summary>The ServoLoopFilter05CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter05CoeffN1">
<summary>The ServoLoopFilter05CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter05CoeffN2">
<summary>The ServoLoopFilter05CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter05CoeffD1">
<summary>The ServoLoopFilter05CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter05CoeffD2">
<summary>The ServoLoopFilter05CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter06CoeffN0">
<summary>The ServoLoopFilter06CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter06CoeffN1">
<summary>The ServoLoopFilter06CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter06CoeffN2">
<summary>The ServoLoopFilter06CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter06CoeffD1">
<summary>The ServoLoopFilter06CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter06CoeffD2">
<summary>The ServoLoopFilter06CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter07CoeffN0">
<summary>The ServoLoopFilter07CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter07CoeffN1">
<summary>The ServoLoopFilter07CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter07CoeffN2">
<summary>The ServoLoopFilter07CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter07CoeffD1">
<summary>The ServoLoopFilter07CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter07CoeffD2">
<summary>The ServoLoopFilter07CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.RolloverMode">
<summary>The RolloverMode axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.BrakeEnableDelay">
<summary>The BrakeEnableDelay axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MaxSpeedClamp">
<summary>The MaxSpeedClamp axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.TrajectoryFirFilter">
<summary>The TrajectoryFirFilter axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.TrajectoryIirFilter">
<summary>The TrajectoryIirFilter axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CalibrationIirFilter">
<summary>The CalibrationIirFilter axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.BacklashIirFilter">
<summary>The BacklashIirFilter axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.InPositionTime">
<summary>The InPositionTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.InPositionTimeoutThreshold">
<summary>The InPositionTimeoutThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoOutputScaling">
<summary>The ServoOutputScaling axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ExternalFaultAnalogInput">
<summary>The ExternalFaultAnalogInput axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ExternalFaultThreshold">
<summary>The ExternalFaultThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AnalogFilterSetup">
<summary>The AnalogFilterSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.DefaultAxisRampType">
<summary>The DefaultAxisRampType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoOutputOffsetA">
<summary>The ServoOutputOffsetA axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoOutputOffsetB">
<summary>The ServoOutputOffsetB axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentOffsetA">
<summary>The CurrentOffsetA axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentOffsetB">
<summary>The CurrentOffsetB axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperSetup">
<summary>The CommandShaperSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime00">
<summary>The CommandShaperTime00 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime01">
<summary>The CommandShaperTime01 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime02">
<summary>The CommandShaperTime02 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime03">
<summary>The CommandShaperTime03 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime04">
<summary>The CommandShaperTime04 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime05">
<summary>The CommandShaperTime05 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime06">
<summary>The CommandShaperTime06 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime07">
<summary>The CommandShaperTime07 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime08">
<summary>The CommandShaperTime08 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime09">
<summary>The CommandShaperTime09 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime10">
<summary>The CommandShaperTime10 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime11">
<summary>The CommandShaperTime11 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime12">
<summary>The CommandShaperTime12 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime13">
<summary>The CommandShaperTime13 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime14">
<summary>The CommandShaperTime14 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperTime15">
<summary>The CommandShaperTime15 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff00">
<summary>The CommandShaperCoeff00 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff01">
<summary>The CommandShaperCoeff01 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff02">
<summary>The CommandShaperCoeff02 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff03">
<summary>The CommandShaperCoeff03 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff04">
<summary>The CommandShaperCoeff04 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff05">
<summary>The CommandShaperCoeff05 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff06">
<summary>The CommandShaperCoeff06 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff07">
<summary>The CommandShaperCoeff07 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff08">
<summary>The CommandShaperCoeff08 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff09">
<summary>The CommandShaperCoeff09 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff10">
<summary>The CommandShaperCoeff10 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff11">
<summary>The CommandShaperCoeff11 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff12">
<summary>The CommandShaperCoeff12 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff13">
<summary>The CommandShaperCoeff13 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff14">
<summary>The CommandShaperCoeff14 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaperCoeff15">
<summary>The CommandShaperCoeff15 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaper0Type">
<summary>The CommandShaper0Type axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaper0Frequency">
<summary>The CommandShaper0Frequency axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaper0Damping">
<summary>The CommandShaper0Damping axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaper1Type">
<summary>The CommandShaper1Type axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaper1Frequency">
<summary>The CommandShaper1Frequency axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommandShaper1Damping">
<summary>The CommandShaper1Damping axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryBissEncoderSetup">
<summary>The PrimaryBissEncoderSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryBissEncoderResolution">
<summary>The PrimaryBissEncoderResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusInput">
<summary>The AutofocusInput axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusTarget">
<summary>The AutofocusTarget axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusDeadband">
<summary>The AutofocusDeadband axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusGainKi1">
<summary>The AutofocusGainKi1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusGainK">
<summary>The AutofocusGainK axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusLimitLow">
<summary>The AutofocusLimitLow axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusLimitHigh">
<summary>The AutofocusLimitHigh axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusSpeedClamp">
<summary>The AutofocusSpeedClamp axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusHoldInput">
<summary>The AutofocusHoldInput axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusSetup">
<summary>The AutofocusSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.TrajectoryDelayTime">
<summary>The TrajectoryDelayTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward00Axis">
<summary>The CrossAxisFeedforward00Axis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward01Axis">
<summary>The CrossAxisFeedforward01Axis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward02Axis">
<summary>The CrossAxisFeedforward02Axis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward03Axis">
<summary>The CrossAxisFeedforward03Axis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward04Axis">
<summary>The CrossAxisFeedforward04Axis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward05Axis">
<summary>The CrossAxisFeedforward05Axis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward00Gain">
<summary>The CrossAxisFeedforward00Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward01Gain">
<summary>The CrossAxisFeedforward01Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward02Gain">
<summary>The CrossAxisFeedforward02Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward03Gain">
<summary>The CrossAxisFeedforward03Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward04Gain">
<summary>The CrossAxisFeedforward04Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CrossAxisFeedforward05Gain">
<summary>The CrossAxisFeedforward05Gain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardGainPff">
<summary>The FeedforwardGainPff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusInitialRampTime">
<summary>The AutofocusInitialRampTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EndOfTravelCurrentThresholdLow">
<summary>The EndOfTravelCurrentThresholdLow axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EndOfTravelCurrentThresholdHigh">
<summary>The EndOfTravelCurrentThresholdHigh axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusGainKi2">
<summary>The AutofocusGainKi2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEnDatEncoderIncrementalResolution">
<summary>The PrimaryEnDatEncoderIncrementalResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MarkerSearchThreshold">
<summary>The MarkerSearchThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.VelocityCommandThresholdBeforeHome">
<summary>The VelocityCommandThresholdBeforeHome axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder1SineGain">
<summary>The PrimaryEncoder1SineGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder1SineOffset">
<summary>The PrimaryEncoder1SineOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder1CosineGain">
<summary>The PrimaryEncoder1CosineGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder1CosineOffset">
<summary>The PrimaryEncoder1CosineOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoder1Phase">
<summary>The PrimaryEncoder1Phase axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.DriveOutputCommandDelay">
<summary>The DriveOutputCommandDelay axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.StepperRunningCurrentDelay">
<summary>The StepperRunningCurrentDelay axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryAbsoluteFeedbackOffset">
<summary>The PrimaryAbsoluteFeedbackOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CapSensorFilterLength">
<summary>The CapSensorFilterLength axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EnhancedTrackingScale">
<summary>The EnhancedTrackingScale axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EnhancedTrackingBandwidth">
<summary>The EnhancedTrackingBandwidth axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog0InputOffset">
<summary>The Analog0InputOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog1InputOffset">
<summary>The Analog1InputOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog2InputOffset">
<summary>The Analog2InputOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.Analog3InputOffset">
<summary>The Analog3InputOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.EnhancedTrackingSetup">
<summary>The EnhancedTrackingSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoderMarkerAlignment">
<summary>The PrimaryEncoderMarkerAlignment axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoderRadiusThresholdLow">
<summary>The PrimaryEncoderRadiusThresholdLow axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryEncoderRadiusThresholdHigh">
<summary>The PrimaryEncoderRadiusThresholdHigh axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainKsi1">
<summary>The ServoLoopGainKsi1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainKsi2">
<summary>The ServoLoopGainKsi2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PiezoVoltsPerUnit">
<summary>The PiezoVoltsPerUnit axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PiezoVoltageClampLow">
<summary>The PiezoVoltageClampLow axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PiezoVoltageClampHigh">
<summary>The PiezoVoltageClampHigh axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PiezoInitialServoState">
<summary>The PiezoInitialServoState axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardAdvance">
<summary>The FeedforwardAdvance axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CapSensorSetup">
<summary>The CapSensorSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CapSensorThresholdLow">
<summary>The CapSensorThresholdLow axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CapSensorThresholdHigh">
<summary>The CapSensorThresholdHigh axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardGainJff">
<summary>The FeedforwardGainJff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentLoopSetup">
<summary>The CurrentLoopSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.TorqueAngleOffset">
<summary>The TorqueAngleOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEmulatedQuadratureDivider">
<summary>The AuxiliaryEmulatedQuadratureDivider axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderCosineGain">
<summary>The AuxiliaryEncoderCosineGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderCosineOffset">
<summary>The AuxiliaryEncoderCosineOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderMarkerAlignment">
<summary>The AuxiliaryEncoderMarkerAlignment axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderMultiplicationFactor">
<summary>The AuxiliaryEncoderMultiplicationFactor axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderMultiplierSetup">
<summary>The AuxiliaryEncoderMultiplierSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderPhase">
<summary>The AuxiliaryEncoderPhase axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderSineGain">
<summary>The AuxiliaryEncoderSineGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderSineOffset">
<summary>The AuxiliaryEncoderSineOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderRadiusThresholdLow">
<summary>The AuxiliaryEncoderRadiusThresholdLow axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEncoderRadiusThresholdHigh">
<summary>The AuxiliaryEncoderRadiusThresholdHigh axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.StepperDampingGain">
<summary>The StepperDampingGain axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.StepperDampingCutoffFrequency">
<summary>The StepperDampingCutoffFrequency axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter08CoeffN0">
<summary>The ServoLoopFilter08CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter08CoeffN1">
<summary>The ServoLoopFilter08CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter08CoeffN2">
<summary>The ServoLoopFilter08CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter08CoeffD1">
<summary>The ServoLoopFilter08CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter08CoeffD2">
<summary>The ServoLoopFilter08CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter09CoeffN0">
<summary>The ServoLoopFilter09CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter09CoeffN1">
<summary>The ServoLoopFilter09CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter09CoeffN2">
<summary>The ServoLoopFilter09CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter09CoeffD1">
<summary>The ServoLoopFilter09CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter09CoeffD2">
<summary>The ServoLoopFilter09CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter10CoeffN0">
<summary>The ServoLoopFilter10CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter10CoeffN1">
<summary>The ServoLoopFilter10CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter10CoeffN2">
<summary>The ServoLoopFilter10CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter10CoeffD1">
<summary>The ServoLoopFilter10CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter10CoeffD2">
<summary>The ServoLoopFilter10CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter11CoeffN0">
<summary>The ServoLoopFilter11CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter11CoeffN1">
<summary>The ServoLoopFilter11CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter11CoeffN2">
<summary>The ServoLoopFilter11CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter11CoeffD1">
<summary>The ServoLoopFilter11CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter11CoeffD2">
<summary>The ServoLoopFilter11CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter12CoeffN0">
<summary>The ServoLoopFilter12CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter12CoeffN1">
<summary>The ServoLoopFilter12CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter12CoeffN2">
<summary>The ServoLoopFilter12CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter12CoeffD1">
<summary>The ServoLoopFilter12CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter12CoeffD2">
<summary>The ServoLoopFilter12CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter13CoeffN0">
<summary>The ServoLoopFilter13CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter13CoeffN1">
<summary>The ServoLoopFilter13CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter13CoeffN2">
<summary>The ServoLoopFilter13CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter13CoeffD1">
<summary>The ServoLoopFilter13CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter13CoeffD2">
<summary>The ServoLoopFilter13CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter14CoeffN0">
<summary>The ServoLoopFilter14CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter14CoeffN1">
<summary>The ServoLoopFilter14CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter14CoeffN2">
<summary>The ServoLoopFilter14CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter14CoeffD1">
<summary>The ServoLoopFilter14CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter14CoeffD2">
<summary>The ServoLoopFilter14CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter15CoeffN0">
<summary>The ServoLoopFilter15CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter15CoeffN1">
<summary>The ServoLoopFilter15CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter15CoeffN2">
<summary>The ServoLoopFilter15CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter15CoeffD1">
<summary>The ServoLoopFilter15CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopFilter15CoeffD2">
<summary>The ServoLoopFilter15CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutoMsetRampTime">
<summary>The AutoMsetRampTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutoMsetAngle">
<summary>The AutoMsetAngle axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.StoPulseFilter">
<summary>The StoPulseFilter axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommutationInitializationSetup">
<summary>The CommutationInitializationSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommutationInitializationAngle">
<summary>The CommutationInitializationAngle axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter00CoeffN0">
<summary>The FeedforwardFilter00CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter00CoeffN1">
<summary>The FeedforwardFilter00CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter00CoeffN2">
<summary>The FeedforwardFilter00CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter00CoeffD1">
<summary>The FeedforwardFilter00CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter00CoeffD2">
<summary>The FeedforwardFilter00CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter01CoeffN0">
<summary>The FeedforwardFilter01CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter01CoeffN1">
<summary>The FeedforwardFilter01CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter01CoeffN2">
<summary>The FeedforwardFilter01CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter01CoeffD1">
<summary>The FeedforwardFilter01CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter01CoeffD2">
<summary>The FeedforwardFilter01CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter02CoeffN0">
<summary>The FeedforwardFilter02CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter02CoeffN1">
<summary>The FeedforwardFilter02CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter02CoeffN2">
<summary>The FeedforwardFilter02CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter02CoeffD1">
<summary>The FeedforwardFilter02CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter02CoeffD2">
<summary>The FeedforwardFilter02CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter03CoeffN0">
<summary>The FeedforwardFilter03CoeffN0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter03CoeffN1">
<summary>The FeedforwardFilter03CoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter03CoeffN2">
<summary>The FeedforwardFilter03CoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter03CoeffD1">
<summary>The FeedforwardFilter03CoeffD1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilter03CoeffD2">
<summary>The FeedforwardFilter03CoeffD2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainKip2">
<summary>The ServoLoopGainKip2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainKip">
<summary>The ServoLoopGainKip axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainKpv">
<summary>The ServoLoopGainKpv axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainK">
<summary>The ServoLoopGainK axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainKiv">
<summary>The ServoLoopGainKiv axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainAlpha">
<summary>The ServoLoopGainAlpha axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ServoLoopGainNormalizationFactor">
<summary>The ServoLoopGainNormalizationFactor axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommutationSearchTime">
<summary>The CommutationSearchTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CommutationSearchCurrent">
<summary>The CommutationSearchCurrent axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.VirtualDriveType">
<summary>The VirtualDriveType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.VirtualDriveStartingAxis">
<summary>The VirtualDriveStartingAxis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardGainNormalizationFactor">
<summary>The FeedforwardGainNormalizationFactor axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.DefaultAxisSCurvePercentage">
<summary>The DefaultAxisSCurvePercentage axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardFilterSetup">
<summary>The FeedforwardFilterSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MotorPolePitch">
<summary>The MotorPolePitch axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryFeedbackResolution">
<summary>The PrimaryFeedbackResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryFeedbackResolution">
<summary>The AuxiliaryFeedbackResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AmplifierEnableOutputMode">
<summary>The AmplifierEnableOutputMode axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEnDatEncoderSetup">
<summary>The AuxiliaryEnDatEncoderSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEnDatEncoderResolution">
<summary>The AuxiliaryEnDatEncoderResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryEnDatEncoderTurns">
<summary>The AuxiliaryEnDatEncoderTurns axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryBissEncoderSetup">
<summary>The AuxiliaryBissEncoderSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryBissEncoderResolution">
<summary>The AuxiliaryBissEncoderResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryAbsoluteFeedbackOffset">
<summary>The AuxiliaryAbsoluteFeedbackOffset axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.GantryAxisMask">
<summary>The GantryAxisMask axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.GantryLogicalType">
<summary>The GantryLogicalType axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.GantryMechanicalDesign">
<summary>The GantryMechanicalDesign axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.GantryMisalignmentThreshold">
<summary>The GantryMisalignmentThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.GantryFeedbackSeparation">
<summary>The GantryFeedbackSeparation axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusGainKi3">
<summary>The AutofocusGainKi3 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusGainKi4">
<summary>The AutofocusGainKi4 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusGainKi5">
<summary>The AutofocusGainKi5 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusEncoderScaleFactor">
<summary>The AutofocusEncoderScaleFactor axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimarySsiEncoderSetup">
<summary>The PrimarySsiEncoderSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimarySsiEncoderResolution">
<summary>The PrimarySsiEncoderResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliarySsiEncoderSetup">
<summary>The AuxiliarySsiEncoderSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliarySsiEncoderResolution">
<summary>The AuxiliarySsiEncoderResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentCommandCouplingLeaderAxis">
<summary>The CurrentCommandCouplingLeaderAxis axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.GalvoScannerInterface">
<summary>The GalvoScannerInterface axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.GantryPhysicalDirection">
<summary>The GantryPhysicalDirection axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.LinearAmpVoltageClamp">
<summary>The LinearAmpVoltageClamp axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentCommandCouplingFollowerDirection">
<summary>The CurrentCommandCouplingFollowerDirection axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ShuntNormalizedTemperatureFactor">
<summary>The ShuntNormalizedTemperatureFactor axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.ShuntThermalTimeConstant">
<summary>The ShuntThermalTimeConstant axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.BusOvervoltageThreshold">
<summary>The BusOvervoltageThreshold axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryBissEncoderIncrementalResolution">
<summary>The PrimaryBissEncoderIncrementalResolution axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AutofocusGainTff">
<summary>The AutofocusGainTff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.PrimaryBissEncoderTurns">
<summary>The PrimaryBissEncoderTurns axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.AuxiliaryBissEncoderTurns">
<summary>The AuxiliaryBissEncoderTurns axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FeedforwardGainSff">
<summary>The FeedforwardGainSff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentLoopFeedforwardGainRff">
<summary>The CurrentLoopFeedforwardGainRff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentLoopFeedforwardGainLff">
<summary>The CurrentLoopFeedforwardGainLff axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentLoopFeedforwardBackEmf">
<summary>The CurrentLoopFeedforwardBackEmf axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.CurrentLoopFeedforwardBusVoltage">
<summary>The CurrentLoopFeedforwardBusVoltage axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.WorkpointCommandFirFilterCoeff0">
<summary>The WorkpointCommandFirFilterCoeff0 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.WorkpointCommandFirFilterCoeffP1">
<summary>The WorkpointCommandFirFilterCoeffP1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.WorkpointCommandFirFilterCoeffP2">
<summary>The WorkpointCommandFirFilterCoeffP2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.WorkpointCommandFirFilterCoeffN1">
<summary>The WorkpointCommandFirFilterCoeffN1 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.WorkpointCommandFirFilterCoeffN2">
<summary>The WorkpointCommandFirFilterCoeffN2 axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MotorSupplyFaultTime">
<summary>The MotorSupplyFaultTime axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAnalogOutputSetup">
<summary>The FaultAnalogOutputSetup axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAnalogOutput0Value">
<summary>The FaultAnalogOutput0Value axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAnalogOutput1Value">
<summary>The FaultAnalogOutput1Value axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAnalogOutput2Value">
<summary>The FaultAnalogOutput2Value axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAnalogOutput3Value">
<summary>The FaultAnalogOutput3Value axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAnalogOutput4Value">
<summary>The FaultAnalogOutput4Value axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.FaultAnalogOutput5Value">
<summary>The FaultAnalogOutput5Value axis controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisParameterId.MotorTemperatureThreshold">
<summary>The MotorTemperatureThreshold axis controller parameter.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisParameterCategory">
<summary>
Contains all controller parameters in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisParameterCategory.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.AllParameters">
<summary>
Gets a list of all controller parameters in all controller parameter groups in the axis parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.AllGroups">
<summary>
Gets a list of all controller parameter groups in the axis parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.AxisIndex">
<summary>
Gets the numeric index of the axis that these parameters are for.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Item(Aerotech.Automation1.DotNet.AxisParameterId)">
<summary>
Gets a controller parameter by ID.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Item(System.String)">
<summary>
Gets a controller parameter by case-insensitive name.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Autofocus">
<summary>
Gets the Autofocus controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Deprecated">
<summary>
Gets the Deprecated controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Drive">
<summary>
Gets the Drive controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Feedback">
<summary>
Gets the Feedback controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Gantry">
<summary>
Gets the Gantry controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Homing">
<summary>
Gets the Homing controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Identification">
<summary>
Gets the Identification controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.IO">
<summary>
Gets the IO controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Motion">
<summary>
Gets the Motion controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Motor">
<summary>
Gets the Motor controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Optimization">
<summary>
Gets the Optimization controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Protection">
<summary>
Gets the Protection controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Servo">
<summary>
Gets the Servo controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterCategory.Units">
<summary>
Gets the Units controller parameter group.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisParameterCategory.Aerotech#Automation1#DotNet#IParameterCategory#GetByNumericId(System.Int32)">
<summary>
Gets a controller parameter by numeric ID.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskParameterId">
<summary>
Represents a controller parameter in the task parameter category.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskName">
<summary>The TaskName task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultTaskWaitMode">
<summary>The DefaultTaskWaitMode task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedSCurvePercentage">
<summary>The DefaultCoordinatedSCurvePercentage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskErrorAbortAxes">
<summary>The TaskErrorAbortAxes task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput1MinVoltage">
<summary>The JoystickInput1MinVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput1MaxVoltage">
<summary>The JoystickInput1MaxVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput1Deadband">
<summary>The JoystickInput1Deadband task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput0MinVoltage">
<summary>The JoystickInput0MinVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput0MaxVoltage">
<summary>The JoystickInput0MaxVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput0Deadband">
<summary>The JoystickInput0Deadband task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskTerminationAxes">
<summary>The TaskTerminationAxes task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskStopAbortAxes">
<summary>The TaskStopAbortAxes task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedSpeed">
<summary>The DefaultCoordinatedSpeed task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedRampRate">
<summary>The DefaultCoordinatedRampRate task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultDependentCoordinatedRampRate">
<summary>The DefaultDependentCoordinatedRampRate task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedRampMode">
<summary>The DefaultCoordinatedRampMode task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedRampTime">
<summary>The DefaultCoordinatedRampTime task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultDependentCoordinatedSpeed">
<summary>The DefaultDependentCoordinatedSpeed task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedAccelLimit">
<summary>The DefaultCoordinatedAccelLimit task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultDependentCoordinatedAccelLimit">
<summary>The DefaultDependentCoordinatedAccelLimit task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedCircularAccelLimit">
<summary>The DefaultCoordinatedCircularAccelLimit task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.CoordinatedAccelLimitSetup">
<summary>The CoordinatedAccelLimitSetup task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MaxLookaheadMoves">
<summary>The MaxLookaheadMoves task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.RadiusCorrectionThreshold">
<summary>The RadiusCorrectionThreshold task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.RadiusErrorThreshold">
<summary>The RadiusErrorThreshold task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.CutterTolerance">
<summary>The CutterTolerance task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.FeedholdInput">
<summary>The FeedholdInput task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.FeedholdSetup">
<summary>The FeedholdSetup task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MfoAnalogInput">
<summary>The MfoAnalogInput task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.SpindleMsoInput">
<summary>The SpindleMsoInput task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.SpindleAxis">
<summary>The SpindleAxis task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MotionUpdateRate">
<summary>The MotionUpdateRate task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.ExecuteNumLines">
<summary>The ExecuteNumLines task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.CoordinatedMoveDurationMinimum">
<summary>The CoordinatedMoveDurationMinimum task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultTaskMotionMode">
<summary>The DefaultTaskMotionMode task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput0">
<summary>The JoystickInput0 task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput1">
<summary>The JoystickInput1 task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickAxesSelect">
<summary>The JoystickAxesSelect task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickSpeedSelect">
<summary>The JoystickSpeedSelect task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInterlock">
<summary>The JoystickInterlock task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput2">
<summary>The JoystickInput2 task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MfoAnalogMinVoltage">
<summary>The MfoAnalogMinVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MfoAnalogMaxVoltage">
<summary>The MfoAnalogMaxVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MfoMaximum">
<summary>The MfoMaximum task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput2MinVoltage">
<summary>The JoystickInput2MinVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput2MaxVoltage">
<summary>The JoystickInput2MaxVoltage task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.JoystickInput2Deadband">
<summary>The JoystickInput2Deadband task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MfoMinimum">
<summary>The MfoMinimum task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MfoAnalogStep">
<summary>The MfoAnalogStep task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultTaskTargetMode">
<summary>The DefaultTaskTargetMode task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultCoordinatedRampType">
<summary>The DefaultCoordinatedRampType task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultSpindleSpeed">
<summary>The DefaultSpindleSpeed task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MotionInterpolationMode">
<summary>The MotionInterpolationMode task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.DefaultTaskTimeUnits">
<summary>The DefaultTaskTimeUnits task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.MaxRetraceMoves">
<summary>The MaxRetraceMoves task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.ExecuteNumLinesAfterMove">
<summary>The ExecuteNumLinesAfterMove task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.StringStackSize">
<summary>The StringStackSize task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.StackSize">
<summary>The StackSize task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskReals">
<summary>The TaskReals task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskIntegers">
<summary>The TaskIntegers task controller parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskStrings">
<summary>The TaskStrings task controller parameter.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskParameterCategory">
<summary>
Contains all controller parameters in the task parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskParameterCategory.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.AllParameters">
<summary>
Gets a list of all controller parameters in all controller parameter groups in the task parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.AllGroups">
<summary>
Gets a list of all controller parameter groups in the task parameter category.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.TaskIndex">
<summary>
Gets the numeric index of the task that these parameters are for.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Item(Aerotech.Automation1.DotNet.TaskParameterId)">
<summary>
Gets a controller parameter by ID.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Item(System.String)">
<summary>
Gets a controller parameter by case-insensitive name.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Deprecated">
<summary>
Gets the Deprecated controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Identification">
<summary>
Gets the Identification controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Joystick">
<summary>
Gets the Joystick controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Motion">
<summary>
Gets the Motion controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Programming">
<summary>
Gets the Programming controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskParameterCategory.Protection">
<summary>
Gets the Protection controller parameter group.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskParameterCategory.Aerotech#Automation1#DotNet#IParameterCategory#GetByNumericId(System.Int32)">
<summary>
Gets a controller parameter by numeric ID.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DeprecatedSystemParameterGroup">
<summary>
Represents the "Deprecated" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DeprecatedSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DeprecatedSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Deprecated").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DeprecatedSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup">
<summary>
Represents the "Communication" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Communication").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.AsciiInterfaceFaultCharacter">
<summary>
Gets the AsciiInterfaceFaultCharacter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.AsciiInterfaceInvalidCharacter">
<summary>
Gets the AsciiInterfaceInvalidCharacter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.AsciiInterfacePort">
<summary>
Gets the AsciiInterfacePort controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.AsciiInterfaceSetup">
<summary>
Gets the AsciiInterfaceSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.AsciiInterfaceSuccessCharacter">
<summary>
Gets the AsciiInterfaceSuccessCharacter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.CommunicationSystemParameterGroup.AsciiInterfaceTerminatingCharacter">
<summary>
Gets the AsciiInterfaceTerminatingCharacter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DataCollectionSystemParameterGroup">
<summary>
Represents the "DataCollection" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DataCollectionSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "DataCollection").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionSystemParameterGroup.DataCollectionItems">
<summary>
Gets the DataCollectionItems controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DataCollectionSystemParameterGroup.DataCollectionPoints">
<summary>
Gets the DataCollectionPoints controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IFOVSystemParameterGroup">
<summary>
Represents the "IFOV" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IFOVSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IFOVSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "IFOV").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IFOVSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IFOVSystemParameterGroup.IfovConfigurations">
<summary>
Gets the IfovConfigurations controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IFOVSystemParameterGroup.IfovMaximumTime">
<summary>
Gets the IfovMaximumTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup">
<summary>
Represents the "Programming" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Programming").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.DependentSpeedScaleFactor">
<summary>
Gets the DependentSpeedScaleFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.EnabledTasks">
<summary>
Gets the EnabledTasks controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.GlobalIntegers">
<summary>
Gets the GlobalIntegers controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.GlobalReals">
<summary>
Gets the GlobalReals controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.GlobalStrings">
<summary>
Gets the GlobalStrings controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.PrimaryUnitsMapping">
<summary>
Gets the PrimaryUnitsMapping controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.SecondaryUnitsName">
<summary>
Gets the SecondaryUnitsName controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingSystemParameterGroup.SecondaryUnitsScaleFactor">
<summary>
Gets the SecondaryUnitsScaleFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup">
<summary>
Represents the "Protection" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Protection").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup.FaultAckMoveOutOfLimit">
<summary>
Gets the FaultAckMoveOutOfLimit controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup.RequiredAxes">
<summary>
Gets the RequiredAxes controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup.SoftwareEmergencyStopInput">
<summary>
Gets the SoftwareEmergencyStopInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionSystemParameterGroup.SoftwareExternalFaultInput">
<summary>
Gets the SoftwareExternalFaultInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup">
<summary>
Represents the "MotionHealth" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "MotionHealth").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogAxes">
<summary>
Gets the SignalLogAxes controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogFaultMaskTrigger">
<summary>
Gets the SignalLogFaultMaskTrigger controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogItems">
<summary>
Gets the SignalLogItems controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogPointsAfterTrigger">
<summary>
Gets the SignalLogPointsAfterTrigger controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogPointsBeforeTrigger">
<summary>
Gets the SignalLogPointsBeforeTrigger controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogSamplePeriod">
<summary>
Gets the SignalLogSamplePeriod controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogSetup">
<summary>
Gets the SignalLogSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionHealthSystemParameterGroup.SignalLogTasks">
<summary>
Gets the SignalLogTasks controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TransformationSystemParameterGroup">
<summary>
Represents the "Transformation" controller parameter group in the system parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TransformationSystemParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TransformationSystemParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Transformation").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TransformationSystemParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TransformationSystemParameterGroup.TransformationEnableMode">
<summary>
Gets the TransformationEnableMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TransformationSystemParameterGroup.TransformationExecutionOrder">
<summary>
Gets the TransformationExecutionOrder controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IdentificationAxisParameterGroup">
<summary>
Represents the "Identification" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IdentificationAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IdentificationAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Identification").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IdentificationAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IdentificationAxisParameterGroup.AxisName">
<summary>
Gets the AxisName controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup">
<summary>
Represents the "Autofocus" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Autofocus").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusDeadband">
<summary>
Gets the AutofocusDeadband controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusEncoderScaleFactor">
<summary>
Gets the AutofocusEncoderScaleFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusGainK">
<summary>
Gets the AutofocusGainK controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusGainKi1">
<summary>
Gets the AutofocusGainKi1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusGainKi2">
<summary>
Gets the AutofocusGainKi2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusGainKi3">
<summary>
Gets the AutofocusGainKi3 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusGainKi4">
<summary>
Gets the AutofocusGainKi4 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusGainKi5">
<summary>
Gets the AutofocusGainKi5 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusGainTff">
<summary>
Gets the AutofocusGainTff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusHoldInput">
<summary>
Gets the AutofocusHoldInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusInitialRampTime">
<summary>
Gets the AutofocusInitialRampTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusInput">
<summary>
Gets the AutofocusInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusLimitHigh">
<summary>
Gets the AutofocusLimitHigh controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusLimitLow">
<summary>
Gets the AutofocusLimitLow controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusSetup">
<summary>
Gets the AutofocusSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusSpeedClamp">
<summary>
Gets the AutofocusSpeedClamp controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutofocusAxisParameterGroup.AutofocusTarget">
<summary>
Gets the AutofocusTarget controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveAxisParameterGroup">
<summary>
Represents the "Drive" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Drive").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentCommandCouplingFollowerDirection">
<summary>
Gets the CurrentCommandCouplingFollowerDirection controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentCommandCouplingLeaderAxis">
<summary>
Gets the CurrentCommandCouplingLeaderAxis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentLoopFeedforwardBackEmf">
<summary>
Gets the CurrentLoopFeedforwardBackEmf controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentLoopFeedforwardBusVoltage">
<summary>
Gets the CurrentLoopFeedforwardBusVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentLoopFeedforwardGainLff">
<summary>
Gets the CurrentLoopFeedforwardGainLff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentLoopFeedforwardGainRff">
<summary>
Gets the CurrentLoopFeedforwardGainRff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentLoopGainK">
<summary>
Gets the CurrentLoopGainK controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentLoopGainKi">
<summary>
Gets the CurrentLoopGainKi controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentLoopSetup">
<summary>
Gets the CurrentLoopSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentOffsetA">
<summary>
Gets the CurrentOffsetA controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.CurrentOffsetB">
<summary>
Gets the CurrentOffsetB controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.GalvoScannerInterface">
<summary>
Gets the GalvoScannerInterface controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.VirtualDriveStartingAxis">
<summary>
Gets the VirtualDriveStartingAxis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DriveAxisParameterGroup.VirtualDriveType">
<summary>
Gets the VirtualDriveType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup">
<summary>
Represents the "Feedback" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Feedback").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryAbsoluteFeedbackOffset">
<summary>
Gets the AuxiliaryAbsoluteFeedbackOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryBissEncoderResolution">
<summary>
Gets the AuxiliaryBissEncoderResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryBissEncoderSetup">
<summary>
Gets the AuxiliaryBissEncoderSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryBissEncoderTurns">
<summary>
Gets the AuxiliaryBissEncoderTurns controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEmulatedQuadratureDivider">
<summary>
Gets the AuxiliaryEmulatedQuadratureDivider controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderCosineGain">
<summary>
Gets the AuxiliaryEncoderCosineGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderCosineOffset">
<summary>
Gets the AuxiliaryEncoderCosineOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderMarkerAlignment">
<summary>
Gets the AuxiliaryEncoderMarkerAlignment controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderMultiplicationFactor">
<summary>
Gets the AuxiliaryEncoderMultiplicationFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderMultiplierSetup">
<summary>
Gets the AuxiliaryEncoderMultiplierSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderPhase">
<summary>
Gets the AuxiliaryEncoderPhase controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderRadiusThresholdHigh">
<summary>
Gets the AuxiliaryEncoderRadiusThresholdHigh controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderRadiusThresholdLow">
<summary>
Gets the AuxiliaryEncoderRadiusThresholdLow controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderSineGain">
<summary>
Gets the AuxiliaryEncoderSineGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEncoderSineOffset">
<summary>
Gets the AuxiliaryEncoderSineOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEnDatEncoderResolution">
<summary>
Gets the AuxiliaryEnDatEncoderResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEnDatEncoderSetup">
<summary>
Gets the AuxiliaryEnDatEncoderSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryEnDatEncoderTurns">
<summary>
Gets the AuxiliaryEnDatEncoderTurns controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryFeedbackResolution">
<summary>
Gets the AuxiliaryFeedbackResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliaryFeedbackType">
<summary>
Gets the AuxiliaryFeedbackType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliarySsiEncoderResolution">
<summary>
Gets the AuxiliarySsiEncoderResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.AuxiliarySsiEncoderSetup">
<summary>
Gets the AuxiliarySsiEncoderSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.CapSensorFilterLength">
<summary>
Gets the CapSensorFilterLength controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.CapSensorSetup">
<summary>
Gets the CapSensorSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.CapSensorThresholdHigh">
<summary>
Gets the CapSensorThresholdHigh controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.CapSensorThresholdLow">
<summary>
Gets the CapSensorThresholdLow controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.FeedbackInput0">
<summary>
Gets the FeedbackInput0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.FeedbackInput1">
<summary>
Gets the FeedbackInput1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.FeedbackSetup">
<summary>
Gets the FeedbackSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryAbsoluteFeedbackOffset">
<summary>
Gets the PrimaryAbsoluteFeedbackOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryBissEncoderIncrementalResolution">
<summary>
Gets the PrimaryBissEncoderIncrementalResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryBissEncoderResolution">
<summary>
Gets the PrimaryBissEncoderResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryBissEncoderSetup">
<summary>
Gets the PrimaryBissEncoderSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryBissEncoderTurns">
<summary>
Gets the PrimaryBissEncoderTurns controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEmulatedQuadratureDivider">
<summary>
Gets the PrimaryEmulatedQuadratureDivider controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder0CosineGain">
<summary>
Gets the PrimaryEncoder0CosineGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder0CosineOffset">
<summary>
Gets the PrimaryEncoder0CosineOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder0Phase">
<summary>
Gets the PrimaryEncoder0Phase controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder0SineGain">
<summary>
Gets the PrimaryEncoder0SineGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder0SineOffset">
<summary>
Gets the PrimaryEncoder0SineOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder1CosineGain">
<summary>
Gets the PrimaryEncoder1CosineGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder1CosineOffset">
<summary>
Gets the PrimaryEncoder1CosineOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder1Phase">
<summary>
Gets the PrimaryEncoder1Phase controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder1SineGain">
<summary>
Gets the PrimaryEncoder1SineGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoder1SineOffset">
<summary>
Gets the PrimaryEncoder1SineOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoderMarkerAlignment">
<summary>
Gets the PrimaryEncoderMarkerAlignment controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoderMultiplicationFactor">
<summary>
Gets the PrimaryEncoderMultiplicationFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoderMultiplierSetup">
<summary>
Gets the PrimaryEncoderMultiplierSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoderRadiusThresholdHigh">
<summary>
Gets the PrimaryEncoderRadiusThresholdHigh controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEncoderRadiusThresholdLow">
<summary>
Gets the PrimaryEncoderRadiusThresholdLow controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEnDatEncoderIncrementalResolution">
<summary>
Gets the PrimaryEnDatEncoderIncrementalResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEnDatEncoderResolution">
<summary>
Gets the PrimaryEnDatEncoderResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEnDatEncoderSetup">
<summary>
Gets the PrimaryEnDatEncoderSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryEnDatEncoderTurns">
<summary>
Gets the PrimaryEnDatEncoderTurns controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryFeedbackResolution">
<summary>
Gets the PrimaryFeedbackResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimaryFeedbackType">
<summary>
Gets the PrimaryFeedbackType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimarySsiEncoderResolution">
<summary>
Gets the PrimarySsiEncoderResolution controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FeedbackAxisParameterGroup.PrimarySsiEncoderSetup">
<summary>
Gets the PrimarySsiEncoderSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.GantryAxisParameterGroup">
<summary>
Represents the "Gantry" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Gantry").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.GantryAxisMask">
<summary>
Gets the GantryAxisMask controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.GantryFeedbackSeparation">
<summary>
Gets the GantryFeedbackSeparation controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.GantryLogicalType">
<summary>
Gets the GantryLogicalType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.GantryMechanicalDesign">
<summary>
Gets the GantryMechanicalDesign controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.GantryMisalignmentThreshold">
<summary>
Gets the GantryMisalignmentThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.GantryAxisParameterGroup.GantryPhysicalDirection">
<summary>
Gets the GantryPhysicalDirection controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.HomingAxisParameterGroup">
<summary>
Represents the "Homing" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Homing").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.HomeOffset">
<summary>
Gets the HomeOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.HomePositionSet">
<summary>
Gets the HomePositionSet controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.HomeRampRate">
<summary>
Gets the HomeRampRate controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.HomeSetup">
<summary>
Gets the HomeSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.HomeSpeed">
<summary>
Gets the HomeSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.HomingAxisParameterGroup.HomeType">
<summary>
Gets the HomeType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IOAxisParameterGroup">
<summary>
Represents the "IO" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IOAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "IO").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.AmplifierEnableOutputMode">
<summary>
Gets the AmplifierEnableOutputMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter0CoeffD1">
<summary>
Gets the Analog0Filter0CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter0CoeffD2">
<summary>
Gets the Analog0Filter0CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter0CoeffN0">
<summary>
Gets the Analog0Filter0CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter0CoeffN1">
<summary>
Gets the Analog0Filter0CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter0CoeffN2">
<summary>
Gets the Analog0Filter0CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter1CoeffD1">
<summary>
Gets the Analog0Filter1CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter1CoeffD2">
<summary>
Gets the Analog0Filter1CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter1CoeffN0">
<summary>
Gets the Analog0Filter1CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter1CoeffN1">
<summary>
Gets the Analog0Filter1CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0Filter1CoeffN2">
<summary>
Gets the Analog0Filter1CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog0InputOffset">
<summary>
Gets the Analog0InputOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter0CoeffD1">
<summary>
Gets the Analog1Filter0CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter0CoeffD2">
<summary>
Gets the Analog1Filter0CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter0CoeffN0">
<summary>
Gets the Analog1Filter0CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter0CoeffN1">
<summary>
Gets the Analog1Filter0CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter0CoeffN2">
<summary>
Gets the Analog1Filter0CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter1CoeffD1">
<summary>
Gets the Analog1Filter1CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter1CoeffD2">
<summary>
Gets the Analog1Filter1CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter1CoeffN0">
<summary>
Gets the Analog1Filter1CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter1CoeffN1">
<summary>
Gets the Analog1Filter1CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1Filter1CoeffN2">
<summary>
Gets the Analog1Filter1CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog1InputOffset">
<summary>
Gets the Analog1InputOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog2InputOffset">
<summary>
Gets the Analog2InputOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.Analog3InputOffset">
<summary>
Gets the Analog3InputOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.AnalogFilterSetup">
<summary>
Gets the AnalogFilterSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.DriveOutputCommandDelay">
<summary>
Gets the DriveOutputCommandDelay controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IOAxisParameterGroup.IOSetup">
<summary>
Gets the IOSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MotionAxisParameterGroup">
<summary>
Represents the "Motion" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Motion").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.AxisType">
<summary>
Gets the AxisType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.BacklashDistance">
<summary>
Gets the BacklashDistance controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.BacklashIirFilter">
<summary>
Gets the BacklashIirFilter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.CalibrationIirFilter">
<summary>
Gets the CalibrationIirFilter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.DefaultAxisRampMode">
<summary>
Gets the DefaultAxisRampMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.DefaultAxisRampRate">
<summary>
Gets the DefaultAxisRampRate controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.DefaultAxisRampTime">
<summary>
Gets the DefaultAxisRampTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.DefaultAxisRampType">
<summary>
Gets the DefaultAxisRampType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.DefaultAxisSCurvePercentage">
<summary>
Gets the DefaultAxisSCurvePercentage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.DefaultAxisSpeed">
<summary>
Gets the DefaultAxisSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.InPositionDistance">
<summary>
Gets the InPositionDistance controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.InPositionTime">
<summary>
Gets the InPositionTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.InPositionTimeoutThreshold">
<summary>
Gets the InPositionTimeoutThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.JoystickHighSpeed">
<summary>
Gets the JoystickHighSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.JoystickLowSpeed">
<summary>
Gets the JoystickLowSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.MaxJogDistance">
<summary>
Gets the MaxJogDistance controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.MaxJogSpeed">
<summary>
Gets the MaxJogSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.MaxSpeedClamp">
<summary>
Gets the MaxSpeedClamp controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.ReverseMotionDirection">
<summary>
Gets the ReverseMotionDirection controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.RolloverCounts">
<summary>
Gets the RolloverCounts controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.RolloverMode">
<summary>
Gets the RolloverMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.TrajectoryDelayTime">
<summary>
Gets the TrajectoryDelayTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.TrajectoryFirFilter">
<summary>
Gets the TrajectoryFirFilter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionAxisParameterGroup.TrajectoryIirFilter">
<summary>
Gets the TrajectoryIirFilter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MotorAxisParameterGroup">
<summary>
Represents the "Motor" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Motor").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.AutoMsetAngle">
<summary>
Gets the AutoMsetAngle controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.AutoMsetCurrent">
<summary>
Gets the AutoMsetCurrent controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.AutoMsetRampTime">
<summary>
Gets the AutoMsetRampTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.AutoMsetTime">
<summary>
Gets the AutoMsetTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.CommutationInitializationAngle">
<summary>
Gets the CommutationInitializationAngle controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.CommutationInitializationSetup">
<summary>
Gets the CommutationInitializationSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.CommutationOffset">
<summary>
Gets the CommutationOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.CommutationSearchCurrent">
<summary>
Gets the CommutationSearchCurrent controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.CommutationSearchTime">
<summary>
Gets the CommutationSearchTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.MotorPolePitch">
<summary>
Gets the MotorPolePitch controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.MotorType">
<summary>
Gets the MotorType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.PiezoInitialServoState">
<summary>
Gets the PiezoInitialServoState controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.PiezoVoltageClampHigh">
<summary>
Gets the PiezoVoltageClampHigh controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.PiezoVoltageClampLow">
<summary>
Gets the PiezoVoltageClampLow controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.PiezoVoltsPerUnit">
<summary>
Gets the PiezoVoltsPerUnit controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.StepperDampingCutoffFrequency">
<summary>
Gets the StepperDampingCutoffFrequency controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.StepperDampingGain">
<summary>
Gets the StepperDampingGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.StepperHoldingCurrent">
<summary>
Gets the StepperHoldingCurrent controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.StepperMicrostepsPerStep">
<summary>
Gets the StepperMicrostepsPerStep controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.StepperRunningCurrent">
<summary>
Gets the StepperRunningCurrent controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.StepperRunningCurrentDelay">
<summary>
Gets the StepperRunningCurrentDelay controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotorAxisParameterGroup.TorqueAngleOffset">
<summary>
Gets the TorqueAngleOffset controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup">
<summary>
Represents the "Protection" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Protection").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.AbortDecelRate">
<summary>
Gets the AbortDecelRate controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.AverageCurrentThreshold">
<summary>
Gets the AverageCurrentThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.AverageCurrentTime">
<summary>
Gets the AverageCurrentTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.BrakeDisableDelay">
<summary>
Gets the BrakeDisableDelay controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.BrakeEnableDelay">
<summary>
Gets the BrakeEnableDelay controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.BrakeOutput">
<summary>
Gets the BrakeOutput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.BrakeSetup">
<summary>
Gets the BrakeSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.BusOvervoltageThreshold">
<summary>
Gets the BusOvervoltageThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.EmergencyStopFaultInput">
<summary>
Gets the EmergencyStopFaultInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.EndOfTravelCurrentThresholdHigh">
<summary>
Gets the EndOfTravelCurrentThresholdHigh controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.EndOfTravelCurrentThresholdLow">
<summary>
Gets the EndOfTravelCurrentThresholdLow controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.EndOfTravelLimitSetup">
<summary>
Gets the EndOfTravelLimitSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.ExternalFaultAnalogInput">
<summary>
Gets the ExternalFaultAnalogInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.ExternalFaultDigitalInput">
<summary>
Gets the ExternalFaultDigitalInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.ExternalFaultThreshold">
<summary>
Gets the ExternalFaultThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAbortAxes">
<summary>
Gets the FaultAbortAxes controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAnalogOutput0Value">
<summary>
Gets the FaultAnalogOutput0Value controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAnalogOutput1Value">
<summary>
Gets the FaultAnalogOutput1Value controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAnalogOutput2Value">
<summary>
Gets the FaultAnalogOutput2Value controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAnalogOutput3Value">
<summary>
Gets the FaultAnalogOutput3Value controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAnalogOutput4Value">
<summary>
Gets the FaultAnalogOutput4Value controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAnalogOutput5Value">
<summary>
Gets the FaultAnalogOutput5Value controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultAnalogOutputSetup">
<summary>
Gets the FaultAnalogOutputSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultMask">
<summary>
Gets the FaultMask controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultMaskDecel">
<summary>
Gets the FaultMaskDecel controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultMaskDisable">
<summary>
Gets the FaultMaskDisable controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultMaskDisableDelay">
<summary>
Gets the FaultMaskDisableDelay controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultMaskOutput">
<summary>
Gets the FaultMaskOutput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultOutputSetup">
<summary>
Gets the FaultOutputSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultOutputState">
<summary>
Gets the FaultOutputState controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.FaultSetup">
<summary>
Gets the FaultSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.LimitDebounceDistance">
<summary>
Gets the LimitDebounceDistance controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.LimitDebounceTime">
<summary>
Gets the LimitDebounceTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.LimitDecelDistance">
<summary>
Gets the LimitDecelDistance controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.LinearAmpVoltageClamp">
<summary>
Gets the LinearAmpVoltageClamp controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.MarkerSearchThreshold">
<summary>
Gets the MarkerSearchThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.MaxCurrentClamp">
<summary>
Gets the MaxCurrentClamp controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.MotorSupplyFaultTime">
<summary>
Gets the MotorSupplyFaultTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.MotorTemperatureThreshold">
<summary>
Gets the MotorTemperatureThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.PositionErrorThreshold">
<summary>
Gets the PositionErrorThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.ShuntNormalizedTemperatureFactor">
<summary>
Gets the ShuntNormalizedTemperatureFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.ShuntThermalTimeConstant">
<summary>
Gets the ShuntThermalTimeConstant controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.SoftwareLimitHigh">
<summary>
Gets the SoftwareLimitHigh controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.SoftwareLimitLow">
<summary>
Gets the SoftwareLimitLow controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.SoftwareLimitSetup">
<summary>
Gets the SoftwareLimitSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.StoPulseFilter">
<summary>
Gets the StoPulseFilter controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.VelocityCommandThreshold">
<summary>
Gets the VelocityCommandThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.VelocityCommandThresholdBeforeHome">
<summary>
Gets the VelocityCommandThresholdBeforeHome controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionAxisParameterGroup.VelocityErrorThreshold">
<summary>
Gets the VelocityErrorThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ServoAxisParameterGroup">
<summary>
Represents the "Servo" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Servo").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardAdvance">
<summary>
Gets the FeedforwardAdvance controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter00CoeffD1">
<summary>
Gets the FeedforwardFilter00CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter00CoeffD2">
<summary>
Gets the FeedforwardFilter00CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter00CoeffN0">
<summary>
Gets the FeedforwardFilter00CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter00CoeffN1">
<summary>
Gets the FeedforwardFilter00CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter00CoeffN2">
<summary>
Gets the FeedforwardFilter00CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter01CoeffD1">
<summary>
Gets the FeedforwardFilter01CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter01CoeffD2">
<summary>
Gets the FeedforwardFilter01CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter01CoeffN0">
<summary>
Gets the FeedforwardFilter01CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter01CoeffN1">
<summary>
Gets the FeedforwardFilter01CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter01CoeffN2">
<summary>
Gets the FeedforwardFilter01CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter02CoeffD1">
<summary>
Gets the FeedforwardFilter02CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter02CoeffD2">
<summary>
Gets the FeedforwardFilter02CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter02CoeffN0">
<summary>
Gets the FeedforwardFilter02CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter02CoeffN1">
<summary>
Gets the FeedforwardFilter02CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter02CoeffN2">
<summary>
Gets the FeedforwardFilter02CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter03CoeffD1">
<summary>
Gets the FeedforwardFilter03CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter03CoeffD2">
<summary>
Gets the FeedforwardFilter03CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter03CoeffN0">
<summary>
Gets the FeedforwardFilter03CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter03CoeffN1">
<summary>
Gets the FeedforwardFilter03CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilter03CoeffN2">
<summary>
Gets the FeedforwardFilter03CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardFilterSetup">
<summary>
Gets the FeedforwardFilterSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardGainAff">
<summary>
Gets the FeedforwardGainAff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardGainJff">
<summary>
Gets the FeedforwardGainJff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardGainNormalizationFactor">
<summary>
Gets the FeedforwardGainNormalizationFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardGainPff">
<summary>
Gets the FeedforwardGainPff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardGainSff">
<summary>
Gets the FeedforwardGainSff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.FeedforwardGainVff">
<summary>
Gets the FeedforwardGainVff controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter00CoeffD1">
<summary>
Gets the ServoLoopFilter00CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter00CoeffD2">
<summary>
Gets the ServoLoopFilter00CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter00CoeffN0">
<summary>
Gets the ServoLoopFilter00CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter00CoeffN1">
<summary>
Gets the ServoLoopFilter00CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter00CoeffN2">
<summary>
Gets the ServoLoopFilter00CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter01CoeffD1">
<summary>
Gets the ServoLoopFilter01CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter01CoeffD2">
<summary>
Gets the ServoLoopFilter01CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter01CoeffN0">
<summary>
Gets the ServoLoopFilter01CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter01CoeffN1">
<summary>
Gets the ServoLoopFilter01CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter01CoeffN2">
<summary>
Gets the ServoLoopFilter01CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter02CoeffD1">
<summary>
Gets the ServoLoopFilter02CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter02CoeffD2">
<summary>
Gets the ServoLoopFilter02CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter02CoeffN0">
<summary>
Gets the ServoLoopFilter02CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter02CoeffN1">
<summary>
Gets the ServoLoopFilter02CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter02CoeffN2">
<summary>
Gets the ServoLoopFilter02CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter03CoeffD1">
<summary>
Gets the ServoLoopFilter03CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter03CoeffD2">
<summary>
Gets the ServoLoopFilter03CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter03CoeffN0">
<summary>
Gets the ServoLoopFilter03CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter03CoeffN1">
<summary>
Gets the ServoLoopFilter03CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter03CoeffN2">
<summary>
Gets the ServoLoopFilter03CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter04CoeffD1">
<summary>
Gets the ServoLoopFilter04CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter04CoeffD2">
<summary>
Gets the ServoLoopFilter04CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter04CoeffN0">
<summary>
Gets the ServoLoopFilter04CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter04CoeffN1">
<summary>
Gets the ServoLoopFilter04CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter04CoeffN2">
<summary>
Gets the ServoLoopFilter04CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter05CoeffD1">
<summary>
Gets the ServoLoopFilter05CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter05CoeffD2">
<summary>
Gets the ServoLoopFilter05CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter05CoeffN0">
<summary>
Gets the ServoLoopFilter05CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter05CoeffN1">
<summary>
Gets the ServoLoopFilter05CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter05CoeffN2">
<summary>
Gets the ServoLoopFilter05CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter06CoeffD1">
<summary>
Gets the ServoLoopFilter06CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter06CoeffD2">
<summary>
Gets the ServoLoopFilter06CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter06CoeffN0">
<summary>
Gets the ServoLoopFilter06CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter06CoeffN1">
<summary>
Gets the ServoLoopFilter06CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter06CoeffN2">
<summary>
Gets the ServoLoopFilter06CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter07CoeffD1">
<summary>
Gets the ServoLoopFilter07CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter07CoeffD2">
<summary>
Gets the ServoLoopFilter07CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter07CoeffN0">
<summary>
Gets the ServoLoopFilter07CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter07CoeffN1">
<summary>
Gets the ServoLoopFilter07CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter07CoeffN2">
<summary>
Gets the ServoLoopFilter07CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter08CoeffD1">
<summary>
Gets the ServoLoopFilter08CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter08CoeffD2">
<summary>
Gets the ServoLoopFilter08CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter08CoeffN0">
<summary>
Gets the ServoLoopFilter08CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter08CoeffN1">
<summary>
Gets the ServoLoopFilter08CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter08CoeffN2">
<summary>
Gets the ServoLoopFilter08CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter09CoeffD1">
<summary>
Gets the ServoLoopFilter09CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter09CoeffD2">
<summary>
Gets the ServoLoopFilter09CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter09CoeffN0">
<summary>
Gets the ServoLoopFilter09CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter09CoeffN1">
<summary>
Gets the ServoLoopFilter09CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter09CoeffN2">
<summary>
Gets the ServoLoopFilter09CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter10CoeffD1">
<summary>
Gets the ServoLoopFilter10CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter10CoeffD2">
<summary>
Gets the ServoLoopFilter10CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter10CoeffN0">
<summary>
Gets the ServoLoopFilter10CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter10CoeffN1">
<summary>
Gets the ServoLoopFilter10CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter10CoeffN2">
<summary>
Gets the ServoLoopFilter10CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter11CoeffD1">
<summary>
Gets the ServoLoopFilter11CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter11CoeffD2">
<summary>
Gets the ServoLoopFilter11CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter11CoeffN0">
<summary>
Gets the ServoLoopFilter11CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter11CoeffN1">
<summary>
Gets the ServoLoopFilter11CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter11CoeffN2">
<summary>
Gets the ServoLoopFilter11CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter12CoeffD1">
<summary>
Gets the ServoLoopFilter12CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter12CoeffD2">
<summary>
Gets the ServoLoopFilter12CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter12CoeffN0">
<summary>
Gets the ServoLoopFilter12CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter12CoeffN1">
<summary>
Gets the ServoLoopFilter12CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter12CoeffN2">
<summary>
Gets the ServoLoopFilter12CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter13CoeffD1">
<summary>
Gets the ServoLoopFilter13CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter13CoeffD2">
<summary>
Gets the ServoLoopFilter13CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter13CoeffN0">
<summary>
Gets the ServoLoopFilter13CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter13CoeffN1">
<summary>
Gets the ServoLoopFilter13CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter13CoeffN2">
<summary>
Gets the ServoLoopFilter13CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter14CoeffD1">
<summary>
Gets the ServoLoopFilter14CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter14CoeffD2">
<summary>
Gets the ServoLoopFilter14CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter14CoeffN0">
<summary>
Gets the ServoLoopFilter14CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter14CoeffN1">
<summary>
Gets the ServoLoopFilter14CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter14CoeffN2">
<summary>
Gets the ServoLoopFilter14CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter15CoeffD1">
<summary>
Gets the ServoLoopFilter15CoeffD1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter15CoeffD2">
<summary>
Gets the ServoLoopFilter15CoeffD2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter15CoeffN0">
<summary>
Gets the ServoLoopFilter15CoeffN0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter15CoeffN1">
<summary>
Gets the ServoLoopFilter15CoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilter15CoeffN2">
<summary>
Gets the ServoLoopFilter15CoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopFilterSetup">
<summary>
Gets the ServoLoopFilterSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainAlpha">
<summary>
Gets the ServoLoopGainAlpha controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainK">
<summary>
Gets the ServoLoopGainK controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainKip">
<summary>
Gets the ServoLoopGainKip controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainKip2">
<summary>
Gets the ServoLoopGainKip2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainKiv">
<summary>
Gets the ServoLoopGainKiv controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainKpv">
<summary>
Gets the ServoLoopGainKpv controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainKsi1">
<summary>
Gets the ServoLoopGainKsi1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainKsi2">
<summary>
Gets the ServoLoopGainKsi2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainKv">
<summary>
Gets the ServoLoopGainKv controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopGainNormalizationFactor">
<summary>
Gets the ServoLoopGainNormalizationFactor controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoLoopSetup">
<summary>
Gets the ServoLoopSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoOutputOffsetA">
<summary>
Gets the ServoOutputOffsetA controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoOutputOffsetB">
<summary>
Gets the ServoOutputOffsetB controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ServoAxisParameterGroup.ServoOutputScaling">
<summary>
Gets the ServoOutputScaling controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.UnitsAxisParameterGroup">
<summary>
Represents the "Units" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.UnitsAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.UnitsAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Units").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.UnitsAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.UnitsAxisParameterGroup.CountsPerUnit">
<summary>
Gets the CountsPerUnit controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.UnitsAxisParameterGroup.UnitsName">
<summary>
Gets the UnitsName controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup">
<summary>
Represents the "Optimization" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Optimization").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaper0Damping">
<summary>
Gets the CommandShaper0Damping controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaper0Frequency">
<summary>
Gets the CommandShaper0Frequency controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaper0Type">
<summary>
Gets the CommandShaper0Type controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaper1Damping">
<summary>
Gets the CommandShaper1Damping controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaper1Frequency">
<summary>
Gets the CommandShaper1Frequency controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaper1Type">
<summary>
Gets the CommandShaper1Type controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff00">
<summary>
Gets the CommandShaperCoeff00 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff01">
<summary>
Gets the CommandShaperCoeff01 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff02">
<summary>
Gets the CommandShaperCoeff02 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff03">
<summary>
Gets the CommandShaperCoeff03 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff04">
<summary>
Gets the CommandShaperCoeff04 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff05">
<summary>
Gets the CommandShaperCoeff05 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff06">
<summary>
Gets the CommandShaperCoeff06 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff07">
<summary>
Gets the CommandShaperCoeff07 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff08">
<summary>
Gets the CommandShaperCoeff08 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff09">
<summary>
Gets the CommandShaperCoeff09 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff10">
<summary>
Gets the CommandShaperCoeff10 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff11">
<summary>
Gets the CommandShaperCoeff11 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff12">
<summary>
Gets the CommandShaperCoeff12 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff13">
<summary>
Gets the CommandShaperCoeff13 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff14">
<summary>
Gets the CommandShaperCoeff14 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperCoeff15">
<summary>
Gets the CommandShaperCoeff15 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperSetup">
<summary>
Gets the CommandShaperSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime00">
<summary>
Gets the CommandShaperTime00 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime01">
<summary>
Gets the CommandShaperTime01 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime02">
<summary>
Gets the CommandShaperTime02 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime03">
<summary>
Gets the CommandShaperTime03 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime04">
<summary>
Gets the CommandShaperTime04 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime05">
<summary>
Gets the CommandShaperTime05 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime06">
<summary>
Gets the CommandShaperTime06 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime07">
<summary>
Gets the CommandShaperTime07 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime08">
<summary>
Gets the CommandShaperTime08 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime09">
<summary>
Gets the CommandShaperTime09 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime10">
<summary>
Gets the CommandShaperTime10 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime11">
<summary>
Gets the CommandShaperTime11 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime12">
<summary>
Gets the CommandShaperTime12 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime13">
<summary>
Gets the CommandShaperTime13 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime14">
<summary>
Gets the CommandShaperTime14 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CommandShaperTime15">
<summary>
Gets the CommandShaperTime15 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward00Axis">
<summary>
Gets the CrossAxisFeedforward00Axis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward00Gain">
<summary>
Gets the CrossAxisFeedforward00Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward01Axis">
<summary>
Gets the CrossAxisFeedforward01Axis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward01Gain">
<summary>
Gets the CrossAxisFeedforward01Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward02Axis">
<summary>
Gets the CrossAxisFeedforward02Axis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward02Gain">
<summary>
Gets the CrossAxisFeedforward02Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward03Axis">
<summary>
Gets the CrossAxisFeedforward03Axis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward03Gain">
<summary>
Gets the CrossAxisFeedforward03Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward04Axis">
<summary>
Gets the CrossAxisFeedforward04Axis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward04Gain">
<summary>
Gets the CrossAxisFeedforward04Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward05Axis">
<summary>
Gets the CrossAxisFeedforward05Axis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.CrossAxisFeedforward05Gain">
<summary>
Gets the CrossAxisFeedforward05Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.EnhancedThroughputChannel">
<summary>
Gets the EnhancedThroughputChannel controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.EnhancedThroughputCurrentClamp">
<summary>
Gets the EnhancedThroughputCurrentClamp controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.EnhancedThroughputGain">
<summary>
Gets the EnhancedThroughputGain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.EnhancedTrackingBandwidth">
<summary>
Gets the EnhancedTrackingBandwidth controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.EnhancedTrackingScale">
<summary>
Gets the EnhancedTrackingScale controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.EnhancedTrackingSetup">
<summary>
Gets the EnhancedTrackingSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation0Gain">
<summary>
Gets the HarmonicCancellation0Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation0Input">
<summary>
Gets the HarmonicCancellation0Input controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation0Period">
<summary>
Gets the HarmonicCancellation0Period controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation0Type">
<summary>
Gets the HarmonicCancellation0Type controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation1Gain">
<summary>
Gets the HarmonicCancellation1Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation1Input">
<summary>
Gets the HarmonicCancellation1Input controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation1Period">
<summary>
Gets the HarmonicCancellation1Period controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation1Type">
<summary>
Gets the HarmonicCancellation1Type controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation2Gain">
<summary>
Gets the HarmonicCancellation2Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation2Input">
<summary>
Gets the HarmonicCancellation2Input controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation2Period">
<summary>
Gets the HarmonicCancellation2Period controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation2Type">
<summary>
Gets the HarmonicCancellation2Type controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation3Gain">
<summary>
Gets the HarmonicCancellation3Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation3Input">
<summary>
Gets the HarmonicCancellation3Input controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation3Period">
<summary>
Gets the HarmonicCancellation3Period controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation3Type">
<summary>
Gets the HarmonicCancellation3Type controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation4Gain">
<summary>
Gets the HarmonicCancellation4Gain controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation4Input">
<summary>
Gets the HarmonicCancellation4Input controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation4Period">
<summary>
Gets the HarmonicCancellation4Period controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellation4Type">
<summary>
Gets the HarmonicCancellation4Type controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.HarmonicCancellationSetup">
<summary>
Gets the HarmonicCancellationSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.WorkpointCommandFirFilterCoeff0">
<summary>
Gets the WorkpointCommandFirFilterCoeff0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.WorkpointCommandFirFilterCoeffN1">
<summary>
Gets the WorkpointCommandFirFilterCoeffN1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.WorkpointCommandFirFilterCoeffN2">
<summary>
Gets the WorkpointCommandFirFilterCoeffN2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.WorkpointCommandFirFilterCoeffP1">
<summary>
Gets the WorkpointCommandFirFilterCoeffP1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.OptimizationAxisParameterGroup.WorkpointCommandFirFilterCoeffP2">
<summary>
Gets the WorkpointCommandFirFilterCoeffP2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DeprecatedAxisParameterGroup">
<summary>
Represents the "Deprecated" controller parameter group in the axis parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DeprecatedAxisParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DeprecatedAxisParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Deprecated").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DeprecatedAxisParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DeprecatedTaskParameterGroup">
<summary>
Represents the "Deprecated" controller parameter group in the task parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DeprecatedTaskParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DeprecatedTaskParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Deprecated").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DeprecatedTaskParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IdentificationTaskParameterGroup">
<summary>
Represents the "Identification" controller parameter group in the task parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IdentificationTaskParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IdentificationTaskParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Identification").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IdentificationTaskParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IdentificationTaskParameterGroup.TaskName">
<summary>
Gets the TaskName controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup">
<summary>
Represents the "Joystick" controller parameter group in the task parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Joystick").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickAxesSelect">
<summary>
Gets the JoystickAxesSelect controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput0">
<summary>
Gets the JoystickInput0 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput0Deadband">
<summary>
Gets the JoystickInput0Deadband controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput0MaxVoltage">
<summary>
Gets the JoystickInput0MaxVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput0MinVoltage">
<summary>
Gets the JoystickInput0MinVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput1">
<summary>
Gets the JoystickInput1 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput1Deadband">
<summary>
Gets the JoystickInput1Deadband controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput1MaxVoltage">
<summary>
Gets the JoystickInput1MaxVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput1MinVoltage">
<summary>
Gets the JoystickInput1MinVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput2">
<summary>
Gets the JoystickInput2 controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput2Deadband">
<summary>
Gets the JoystickInput2Deadband controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput2MaxVoltage">
<summary>
Gets the JoystickInput2MaxVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInput2MinVoltage">
<summary>
Gets the JoystickInput2MinVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickInterlock">
<summary>
Gets the JoystickInterlock controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.JoystickTaskParameterGroup.JoystickSpeedSelect">
<summary>
Gets the JoystickSpeedSelect controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.MotionTaskParameterGroup">
<summary>
Represents the "Motion" controller parameter group in the task parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Motion").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.CoordinatedAccelLimitSetup">
<summary>
Gets the CoordinatedAccelLimitSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.CoordinatedMoveDurationMinimum">
<summary>
Gets the CoordinatedMoveDurationMinimum controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.CutterTolerance">
<summary>
Gets the CutterTolerance controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedAccelLimit">
<summary>
Gets the DefaultCoordinatedAccelLimit controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedCircularAccelLimit">
<summary>
Gets the DefaultCoordinatedCircularAccelLimit controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedRampMode">
<summary>
Gets the DefaultCoordinatedRampMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedRampRate">
<summary>
Gets the DefaultCoordinatedRampRate controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedRampTime">
<summary>
Gets the DefaultCoordinatedRampTime controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedRampType">
<summary>
Gets the DefaultCoordinatedRampType controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedSCurvePercentage">
<summary>
Gets the DefaultCoordinatedSCurvePercentage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultCoordinatedSpeed">
<summary>
Gets the DefaultCoordinatedSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultDependentCoordinatedAccelLimit">
<summary>
Gets the DefaultDependentCoordinatedAccelLimit controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultDependentCoordinatedRampRate">
<summary>
Gets the DefaultDependentCoordinatedRampRate controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultDependentCoordinatedSpeed">
<summary>
Gets the DefaultDependentCoordinatedSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultSpindleSpeed">
<summary>
Gets the DefaultSpindleSpeed controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultTaskMotionMode">
<summary>
Gets the DefaultTaskMotionMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultTaskTargetMode">
<summary>
Gets the DefaultTaskTargetMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultTaskTimeUnits">
<summary>
Gets the DefaultTaskTimeUnits controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.DefaultTaskWaitMode">
<summary>
Gets the DefaultTaskWaitMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.FeedholdInput">
<summary>
Gets the FeedholdInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.FeedholdSetup">
<summary>
Gets the FeedholdSetup controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MaxLookaheadMoves">
<summary>
Gets the MaxLookaheadMoves controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MaxRetraceMoves">
<summary>
Gets the MaxRetraceMoves controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MfoAnalogInput">
<summary>
Gets the MfoAnalogInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MfoAnalogMaxVoltage">
<summary>
Gets the MfoAnalogMaxVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MfoAnalogMinVoltage">
<summary>
Gets the MfoAnalogMinVoltage controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MfoAnalogStep">
<summary>
Gets the MfoAnalogStep controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MfoMaximum">
<summary>
Gets the MfoMaximum controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MfoMinimum">
<summary>
Gets the MfoMinimum controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MotionInterpolationMode">
<summary>
Gets the MotionInterpolationMode controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.MotionUpdateRate">
<summary>
Gets the MotionUpdateRate controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.RadiusCorrectionThreshold">
<summary>
Gets the RadiusCorrectionThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.RadiusErrorThreshold">
<summary>
Gets the RadiusErrorThreshold controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.SpindleAxis">
<summary>
Gets the SpindleAxis controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.MotionTaskParameterGroup.SpindleMsoInput">
<summary>
Gets the SpindleMsoInput controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup">
<summary>
Represents the "Programming" controller parameter group in the task parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Programming").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.ExecuteNumLines">
<summary>
Gets the ExecuteNumLines controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.ExecuteNumLinesAfterMove">
<summary>
Gets the ExecuteNumLinesAfterMove controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.StackSize">
<summary>
Gets the StackSize controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.StringStackSize">
<summary>
Gets the StringStackSize controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.TaskIntegers">
<summary>
Gets the TaskIntegers controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.TaskReals">
<summary>
Gets the TaskReals controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProgrammingTaskParameterGroup.TaskStrings">
<summary>
Gets the TaskStrings controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ProtectionTaskParameterGroup">
<summary>
Represents the "Protection" controller parameter group in the task parameter category.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ProtectionTaskParameterGroup.#ctor(System.Int32,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionTaskParameterGroup.GroupName">
<summary>
Gets the name of this controller parameter group (which is "Protection").
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionTaskParameterGroup.AllParameters">
<summary>
Gets a list of all controller parameters that belong to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionTaskParameterGroup.TaskErrorAbortAxes">
<summary>
Gets the TaskErrorAbortAxes controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionTaskParameterGroup.TaskStopAbortAxes">
<summary>
Gets the TaskStopAbortAxes controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ProtectionTaskParameterGroup.TaskTerminationAxes">
<summary>
Gets the TaskTerminationAxes controller parameter that belongs to this controller parameter group.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DoubleParameter">
<summary>
Represents a controller parameter with a double-precision floating-point (<see cref="T:System.Double"/>) value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DoubleParameter.#ctor(Aerotech.Automation1.DotNet.ControllerContext,System.Int32,System.Int32,System.String,System.String,System.Double,System.Nullable{System.Double},System.Nullable{System.Double},System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructs an instance of <see cref="T:Aerotech.Automation1.DotNet.DoubleParameter"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.Id">
<summary>
Gets the unique ID for this controller parameter, which can be either a <see cref="T:Aerotech.Automation1.DotNet.AxisParameterId"/>, <see cref="T:Aerotech.Automation1.DotNet.TaskParameterId"/>, or <see cref="T:Aerotech.Automation1.DotNet.SystemParameterId"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.Name">
<summary>
Gets the string name of this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.Units">
<summary>
Gets the string name of the units for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.ControllerContext">
<summary>
Gets the controller context (axis, task, or system) for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.ContextKey">
<summary>
Gets the context key for this controller parameter. This is either the axis index for axis parameters, task index for task parameters, or zero for system parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.HasBeenModified">
<summary>
Returns whether or not this controller parameter value has been modified. A parameter is considered modified
if it is explicitly set to some value (even the default value). Call <see cref="M:Aerotech.Automation1.DotNet.DoubleParameter.ResetValue"/> to set
the parameter back to its default value and mark the parameter as not modified.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.DefaultValue">
<summary>
Gets the default value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.Value">
<summary>
Gets or sets the current value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.Maximum">
<summary>
Gets the maximum allowed numeric value for this controller parameter, or null if there is no maximum.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.DoubleParameter.Minimum">
<summary>
Gets the minimum allowed numeric value for this controller parameter, or null if there is no minimum.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DoubleParameter.ResetValue">
<summary>
Resets the value of this controller parameter to its default value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DoubleParameter.GetDefaultValue">
<summary>
Returns the default value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DoubleParameter.GetValue">
<summary>
Returns the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DoubleParameter.SetValue(System.Object)">
<summary>
Sets the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.DoubleParameter.SetValueFromFile(System.Xml.Linq.XElement)">
<summary>
Sets the current value for this controller parameter from an <see cref="T:System.Xml.Linq.XElement"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.FloatParameter">
<summary>
Represents a controller parameter with a single-precision floating-point (<see cref="T:System.Single"/>) value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.FloatParameter.#ctor(Aerotech.Automation1.DotNet.ControllerContext,System.Int32,System.Int32,System.String,System.String,System.Single,System.Nullable{System.Single},System.Nullable{System.Single},System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructs an instance of <see cref="T:Aerotech.Automation1.DotNet.FloatParameter"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.Id">
<summary>
Gets the unique ID for this controller parameter, which can be either a <see cref="T:Aerotech.Automation1.DotNet.AxisParameterId"/>, <see cref="T:Aerotech.Automation1.DotNet.TaskParameterId"/>, or <see cref="T:Aerotech.Automation1.DotNet.SystemParameterId"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.Name">
<summary>
Gets the string name of this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.Units">
<summary>
Gets the string name of the units for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.ControllerContext">
<summary>
Gets the controller context (axis, task, or system) for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.ContextKey">
<summary>
Gets the context key for this controller parameter. This is either the axis index for axis parameters, task index for task parameters, or zero for system parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.HasBeenModified">
<summary>
Returns whether or not this controller parameter value has been modified. A parameter is considered modified
if it is explicitly set to some value (even the default value). Call <see cref="M:Aerotech.Automation1.DotNet.FloatParameter.ResetValue"/> to set
the parameter back to its default value and mark the parameter as not modified.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.DefaultValue">
<summary>
Gets the default value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.Value">
<summary>
Gets or sets the current value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.Maximum">
<summary>
Gets the maximum allowed numeric value for this controller parameter, or null if there is no maximum.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.FloatParameter.Minimum">
<summary>
Gets the minimum allowed numeric value for this controller parameter, or null if there is no minimum.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.FloatParameter.ResetValue">
<summary>
Resets the value of this controller parameter to its default value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.FloatParameter.GetDefaultValue">
<summary>
Returns the default value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.FloatParameter.GetValue">
<summary>
Returns the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.FloatParameter.SetValue(System.Object)">
<summary>
Sets the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.FloatParameter.SetValueFromFile(System.Xml.Linq.XElement)">
<summary>
Sets the current value for this controller parameter from an <see cref="T:System.Xml.Linq.XElement"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IntegerParameter">
<summary>
Represents a controller parameter with a 32-bit signed integer (<see cref="T:System.Int32"/>) value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IntegerParameter.#ctor(Aerotech.Automation1.DotNet.ControllerContext,System.Int32,System.Int32,System.String,System.String,System.Int32,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructs an instance of <see cref="T:Aerotech.Automation1.DotNet.IntegerParameter"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.Id">
<summary>
Gets the unique ID for this controller parameter, which can be either a <see cref="T:Aerotech.Automation1.DotNet.AxisParameterId"/>, <see cref="T:Aerotech.Automation1.DotNet.TaskParameterId"/>, or <see cref="T:Aerotech.Automation1.DotNet.SystemParameterId"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.Name">
<summary>
Gets the string name of this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.Units">
<summary>
Gets the string name of the units for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.ControllerContext">
<summary>
Gets the controller context (axis, task, or system) for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.ContextKey">
<summary>
Gets the context key for this controller parameter. This is either the axis index for axis parameters, task index for task parameters, or zero for system parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.HasBeenModified">
<summary>
Returns whether or not this controller parameter value has been modified. A parameter is considered modified
if it is explicitly set to some value (even the default value). Call <see cref="M:Aerotech.Automation1.DotNet.IntegerParameter.ResetValue"/> to set
the parameter back to its default value and mark the parameter as not modified.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.DefaultValue">
<summary>
Gets the default value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.Value">
<summary>
Gets or sets the current value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.Maximum">
<summary>
Gets the maximum allowed numeric value for this controller parameter, or null if there is no maximum.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IntegerParameter.Minimum">
<summary>
Gets the minimum allowed numeric value for this controller parameter, or null if there is no minimum.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IntegerParameter.ResetValue">
<summary>
Resets the value of this controller parameter to its default value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IntegerParameter.GetDefaultValue">
<summary>
Returns the default value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IntegerParameter.GetValue">
<summary>
Returns the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IntegerParameter.SetValue(System.Object)">
<summary>
Sets the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IntegerParameter.SetValueFromFile(System.Xml.Linq.XElement)">
<summary>
Sets the current value for this controller parameter from an <see cref="T:System.Xml.Linq.XElement"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Parameter">
<summary>
Represents a controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Parameter.Id">
<summary>
Gets the unique ID for this controller parameter, which can be either a <see cref="T:Aerotech.Automation1.DotNet.AxisParameterId"/>, <see cref="T:Aerotech.Automation1.DotNet.TaskParameterId"/>, or <see cref="T:Aerotech.Automation1.DotNet.SystemParameterId"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Parameter.Name">
<summary>
Gets the string name of this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Parameter.ControllerContext">
<summary>
Gets the controller context (axis, task, or system) for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Parameter.ContextKey">
<summary>
Gets the context key for this controller parameter. This is either the axis index for axis parameters, task index for task parameters, or zero for system parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Parameter.HasBeenModified">
<summary>
Returns whether or not this controller parameter value has been modified. A parameter is considered modified
if it is explicitly set to some value (even the default value). Call <see cref="M:Aerotech.Automation1.DotNet.Parameter.ResetValue"/> to set
the parameter back to its default value and mark the parameter as not modified.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Parameter.DefaultValue">
<summary>
Gets the default value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Parameter.Value">
<summary>
Gets or sets the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Parameter.ResetValue">
<summary>
Resets the value of this controller parameter to its default value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Parameter.GetDefaultValue">
<summary>
Returns the default value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Parameter.GetValue">
<summary>
Returns the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Parameter.SetValue(System.Object)">
<summary>
Sets the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Parameter.SetValueFromFile(System.Xml.Linq.XElement)">
<summary>
Sets the current value for this controller parameter from an <see cref="T:System.Xml.Linq.XElement"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.StringParameter">
<summary>
Represents a controller parameter with a string (<see cref="T:System.String"/>) value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StringParameter.#ctor(Aerotech.Automation1.DotNet.ControllerContext,System.Int32,System.Int32,System.String,System.String,System.String,System.Func{Aerotech.Automation1.DotNet.Parameter,System.Object},System.Action{Aerotech.Automation1.DotNet.Parameter,System.Object})">
<summary>
Constructs an instance of <see cref="T:Aerotech.Automation1.DotNet.StringParameter"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.Id">
<summary>
Gets the unique ID for this controller parameter, which can be either a <see cref="T:Aerotech.Automation1.DotNet.AxisParameterId"/>, <see cref="T:Aerotech.Automation1.DotNet.TaskParameterId"/>, or <see cref="T:Aerotech.Automation1.DotNet.SystemParameterId"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.Name">
<summary>
Gets the string name of this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.ControllerContext">
<summary>
Gets the controller context (axis, task, or system) for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.ContextKey">
<summary>
Gets the context key for this controller parameter. This is either the axis index for axis parameters, task index for task parameters, or zero for system parameters.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.HasBeenModified">
<summary>
Returns whether or not this controller parameter value has been modified. A parameter is considered modified
if it is explicitly set to some value (even the default value). Call <see cref="M:Aerotech.Automation1.DotNet.StringParameter.ResetValue"/> to set
the parameter back to its default value and mark the parameter as not modified.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.DefaultValue">
<summary>
Gets the default value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.Value">
<summary>
Gets or sets the current value for this controller parameter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StringParameter.Format">
<summary>
Gets a regular expression that the string <see cref="P:Aerotech.Automation1.DotNet.StringParameter.Value"/> must follow, or null if there is not format restriction.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StringParameter.ResetValue">
<summary>
Resets the value of this controller parameter to its default value.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StringParameter.GetDefaultValue">
<summary>
Returns the default value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StringParameter.GetValue">
<summary>
Returns the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StringParameter.SetValue(System.Object)">
<summary>
Sets the current value for this controller parameter.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StringParameter.SetValueFromFile(System.Xml.Linq.XElement)">
<summary>
Sets the current value for this controller parameter from an <see cref="T:System.Xml.Linq.XElement"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AutomaticStatus">
<summary>
A class that continuously and automatically retrieves status from the Automation1 controller. To retrieve status, subscribe to the
<see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> event. To pause automatic status, call <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.Pause"/>. The
<see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> event will not be raised while the controller is stopped or resetting even if
automatic status is not paused. It will continue to be raised once the controller is running again.
If an exception occurs while retrieving status, status retrieval is paused. To see the exception
that caused status retrieval to pause, subscribe to the <see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.ExceptionOccurred"/> event. To start retrieving
status again, call <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.Resume"/>.
Automatically retrieving status has a default status item configuration. To see this default status item configuration,
call <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.GetDefaultConfiguration"/>. To change the status item configuration,
call <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.SetConfiguration(Aerotech.Automation1.DotNet.StatusItemConfiguration)"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ControllerEventArgsCreator,Aerotech.Automation1.DotNet.IStatus,System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved">
<summary>
Raised when new status is retrieved from the Automation1 controller. This event will not be raised while the controller is stopped or resetting
even if automatic status is not paused. It will continue to be raised once the controller is running again.
By default this event will retrieve common status items for every axis and task (see <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.GetDefaultConfiguration"/>),
but you can change the status item configuration by calling <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.SetConfiguration(Aerotech.Automation1.DotNet.StatusItemConfiguration)"/>.
To prevent this event from being raised, call <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.Pause"/>.
</summary>
</member>
<member name="E:Aerotech.Automation1.DotNet.AutomaticStatus.ExceptionOccurred">
<summary>
Raised when an exception occurs while trying to retrieve status from the Automation1 controller.
See the <see cref="P:Aerotech.Automation1.DotNet.ExceptionOccurredEventArgs.Exception"/> property to see the exception that
occurred. If this event is raised, status retrieval has been paused. To continue retrieving status
call <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.Resume"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutomaticStatus.IsPaused">
<summary>
Gets whether or not automatic status retrieval is paused. If automatic status retrieval is paused,
the <see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> will not be raised.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AutomaticStatus.Period">
<summary>
Get or set the period (milliseconds) in which status should be retrieved from the Automation1 controller.
This determines how often <see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.GetDefaultConfiguration">
<summary>
Gets the default status item configuration which is used if you don't change the configuration via <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.SetConfiguration(Aerotech.Automation1.DotNet.StatusItemConfiguration)"/>. This default
status item configuration will retrieve common status items for every axis and task.
</summary>
<remarks>
The default status item configuration configures the following axis
status items for each axis:
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommand"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionFeedback"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionError"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.AuxiliaryFeedback"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.CurrentCommand"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.CurrentFeedback"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.CurrentError"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.ProgramPositionCommand"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.ProgramPositionFeedback"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityCommand"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityFeedback"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityError"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationCommand"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationFeedback"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationError"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveStatus"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.AxisStatus"/>
<see cref="F:Aerotech.Automation1.DotNet.AxisStatusItem.AxisFault"/>
The default status item configuration configures the follow task status item for each task:
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.ProgramLineNumber"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionLineNumber"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskStatus0"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskStatus1"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskStatus2"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskMode"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskState"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskError"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskWarning"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.ExecutionMode"/>
<see cref="F:Aerotech.Automation1.DotNet.TaskStatusItem.Mfo"/>
</remarks>
<returns>The default status item configuration.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.SetConfiguration(Aerotech.Automation1.DotNet.StatusItemConfiguration)">
<summary>
Sets the status item configuration that will be used to retrieve status from the Automation1 controller. Changing the configuration
will change the results that are retrieved when the <see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> event is raised.
</summary>
<param name="statusItemConfiguration">What status items to retrieve from the Automation1 controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.GetConfiguration">
<summary>
Gets the status item configuration that is being used to retrieve status from the Automation1 controller.
To change the status item configuration being used, see <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.SetConfiguration(Aerotech.Automation1.DotNet.StatusItemConfiguration)"/>.
</summary>
<returns>What status items are being retrieved from the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.Resume">
<summary>
Resumes retrieving status from the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.Pause">
<summary>
Pauses retrieving status from the Automation1 controller until <see cref="M:Aerotech.Automation1.DotNet.AutomaticStatus.Resume"/> is called. Pausing status
retrieval prevents <see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> from being raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.Shutdown">
<summary>
Shutdown this instance of <see cref="T:Aerotech.Automation1.DotNet.AutomaticStatus"/>. Once automatic status has been shutdown
it cannot be resumed. An new <see cref="T:Aerotech.Automation1.DotNet.AutomaticStatus"/> object must be created.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.createDefaultStatusItemConfiguration(System.Int32,System.Int32)">
<summary>
Creates the default status item configuration that is used to automatically retrieve status items from the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.startPollingThread">
<summary>
Start the thread that polls for status. This thread is a long running thread that lives for
the life time of the object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AutomaticStatus.pollingWork(System.Threading.CancellationToken)">
<summary>
The method containing the polling work that retrieves status from the controller.
</summary>
<param name="cancellationToken">The cancellation token that causes the thread to die.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.IStatus">
<summary>
An interface to retrieve status from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IStatus.GetStatusItems(Aerotech.Automation1.DotNet.StatusItemConfiguration)">
<summary>
Returns retrieved results for requested status items from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.Status">
<summary>
A class to retrieve status from an Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
<remarks>
Retrieved status represents a moment in time. Status is different from data collection in that status is not real-time and it is
not time-series data. Status also has variable latency when retrieving.
</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.Status.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.AxisSet},System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet},System.Int32,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.MappedVariableCollection},Aerotech.Automation1.DotNet.ControllerEventArgsCreator)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.Status.Automatic">
<summary>
Gets a way to continuously and automatically retrieve status from the Automation1 controller. To automatically retrieve status,
subscribe to the <see cref="E:Aerotech.Automation1.DotNet.AutomaticStatus.NewStatusRetrieved"/> event.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Status.GetStatusItems(Aerotech.Automation1.DotNet.StatusItemConfiguration)">
<summary>
Returns retrieved results for requested status items from the Automation1 controller.
</summary>
<remarks>
The retrieved status represents a moment in time. Retrieving status is not real-time and there is variable latency when
calling this method. Construct a <see cref="T:Aerotech.Automation1.DotNet.StatusItemConfiguration"/> and add status items to it to retrieve them from the Automation1 controller.
</remarks>
<param name="statusItemConfiguration">What status items to retrieve from the Automation1 controller.</param>
<returns>Returns a <see cref="T:Aerotech.Automation1.DotNet.StatusItemResults"/> that contains the results for the retrieved status items.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Status.ConvertUnits(Aerotech.Automation1.DotNet.ControllerUnits,Aerotech.Automation1.DotNet.StatusItemResults)">
<summary>
Converts the data within a <see cref="T:Aerotech.Automation1.DotNet.StatusItemResults"/> object to use different units. How the data in a <see cref="T:Aerotech.Automation1.DotNet.StatusItemResults"/>
object is converted is dependent on the Automation1 controller's configured parameters.
See <see cref="T:Aerotech.Automation1.DotNet.ControllerDistanceUnit"/> for how each unit type is dependent on configured parameters.
See <see cref="T:Aerotech.Automation1.DotNet.ControllerConfiguration"/> to see how to change configured parameters on the Automation1 controller.
</summary>
<param name="unitsToConvertTo">The units to convert to.</param>
<param name="resultsToConvert">The results to convert.</param>
<returns>Returns a new <see cref="T:Aerotech.Automation1.DotNet.StatusItemResults"/> object which contains data that has been converted to use a different set of units.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.Status.CreateRequest(Aerotech.Automation1.DotNet.AxisSet,Aerotech.Automation1.DotNet.TaskSet,Aerotech.Automation1.DotNet.MappedVariableCollection,Aerotech.Automation1.DotNet.StatusItemConfiguration,System.Collections.Generic.Dictionary{System.Int32,Aerotech.Automation1.DotNet.MappedVariable}@)">
<summary>
Creates a request for the specified <see cref="T:Aerotech.Automation1.DotNet.StatusItemConfiguration"/> to be sent to the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.Status.GetResultsFromResponse(Aerotech.Automation1.DotNet.AxisSet,Aerotech.Automation1.DotNet.TaskSet,Aerotech.Automation1.Communication.Requests.Smc.StatusGetItemsRequest,Aerotech.Automation1.Communication.Requests.Smc.StatusGetItemsResponse,System.Collections.Generic.Dictionary{System.Int32,Aerotech.Automation1.DotNet.MappedVariable})">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.StatusItemResults"/> based on the response from the controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.StatusItemConfiguration">
<summary>
Represents a configuration of status items to retrieve from an Automation1 controller using the <see cref="M:Aerotech.Automation1.DotNet.Status.GetStatusItems(Aerotech.Automation1.DotNet.StatusItemConfiguration)"/> method
via the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Status"/> property. Add status items to retrieve using the <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.System"/>, <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Axis"/>,
<see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Task"/>, and <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.IndustrialEthernet"/> properties.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StatusItemConfiguration.#ctor">
<summary>
Constructs a new, empty <see cref="T:Aerotech.Automation1.DotNet.StatusItemConfiguration"/>. Add status items to retrieve using
the <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.System"/>, <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Task"/>, and <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.IndustrialEthernet"/> properties.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.DefaultStatusItemArgument">
<summary>
Gets the default value of an argument for a status item if you do not specify one (the default is 0).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Axis">
<summary>
Gets the configuration of axis based status items to retrieve from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Task">
<summary>
Gets the configuration of task based status items to retrieve from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.System">
<summary>
Gets the configuration of system based status items to retrieve from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.IndustrialEthernet">
<summary>
Gets the configuration of Industrial Ethernet mappings to retrieve from an Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Count">
<summary>
Gets the total number of all status items added to this configuration to be retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StatusItemConfiguration.AddFrom(Aerotech.Automation1.DotNet.StatusItemConfiguration)">
<summary>
Adds all configured status items from another <see cref="T:Aerotech.Automation1.DotNet.StatusItemConfiguration"/> to this configuration.
</summary>
<remarks>This will update the <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.Task"/>, <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.System"/>, and <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.IndustrialEthernet"/> configurations.</remarks>
<param name="otherStatusItemConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.StatusItemConfiguration"/> to add status items from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.StatusItemConfiguration.Clear">
<summary>
Removes all status items from this configuration so they will not be retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection">
<summary>
Represents a collection of configured axis based status items to retrieve from an Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what axis based status items to retrieve.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.ConfiguredStatusItems">
<summary>
Gets the internal collection of user configured status items.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Count">
<summary>
Gets the number of axis based status items added to this configuration to be retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.AddFrom(Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection)">
<summary>
Adds all configured axis based status items from another <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection"/> to this configuration.
</summary>
<param name="otherAxisStatusItemConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection"/> to add status items from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.AxisStatusItem,System.Int32)">
<summary>
Adds an axis based status item to be retrieved on a specific axis on the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item to retrieve.</param>
<param name="axisIndex">The axis to retrieve the status item on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.AxisStatusItem,System.Int32,System.Int32)">
<summary>
Adds an axis based status item to be retrieved on a specific axis on the Automation1 controller, with an
optional argument for the status item (if unsure about the status item argument, don't use this overload).
</summary>
<param name="axisStatusItem">The axis based status item to retrieve.</param>
<param name="axisIndex">The axis to retrieve the status item on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.AxisStatusItem,System.String)">
<summary>
Adds an axis based status item to be retrieved on a specific axis on the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item to retrieve.</param>
<param name="axisName">The axis to retrieve the status item on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.AxisStatusItem,System.String,System.Int32)">
<summary>
Adds an axis based status item to be retrieved on a specific axis on the Automation1 controller, with an
optional argument for the status item (if unsure about the status item argument, don't use this overload).
</summary>
<param name="axisStatusItem">The axis based status item to retrieve.</param>
<param name="axisName">The axis to retrieve the status item on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.AxisStatusItem,System.Int32)">
<summary>
Removes an axis based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item to remove.</param>
<param name="axisIndex">The axis that the status item was to be retrieved on.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.AxisStatusItem,System.Int32,System.Int32)">
<summary>
Removes an axis based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item to remove.</param>
<param name="axisIndex">The axis that the status item was to be retrieved on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.AxisStatusItem,System.String)">
<summary>
Removes an axis based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item to remove.</param>
<param name="axisName">The axis that the status item was to be retrieved on.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.AxisStatusItem,System.String,System.Int32)">
<summary>
Removes an axis based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item to remove.</param>
<param name="axisName">The axis that the status item was to be retrieved on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemConfigurationCollection.Clear">
<summary>
Removes all axis based status items from this configuration so they will not be retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection">
<summary>
Represents a collection of configured task based status items to retrieve from an Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what task based status items to retrieve.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.ConfiguredStatusItems">
<summary>
Gets the internal collection of user configured status items.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Count">
<summary>
Gets the number of task based status items added to this configuration to be retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.AddFrom(Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection)">
<summary>
Adds all configured task based status items from another <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection"/> to this configuration.
</summary>
<param name="otherTaskStatusItemConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection"/> to add status items from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.TaskStatusItem,System.Int32)">
<summary>
Adds a task based status item to be retrieved on a specific task on the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item to retrieve.</param>
<param name="taskIndex">The task to retrieve the status item on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.TaskStatusItem,System.Int32,System.Int32)">
<summary>
Adds a task based status item to be retrieved on a specific task on the Automation1 controller, with an
optional argument for the status item (if unsure about the status item argument, don't use this overload).
</summary>
<param name="taskStatusItem">The task based status item to retrieve.</param>
<param name="taskIndex">The task to retrieve the status item on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.TaskStatusItem,System.String)">
<summary>
Adds a task based status item to be retrieved on a specific task on the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item to retrieve.</param>
<param name="taskName">The task to retrieve the status item on.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.TaskStatusItem,System.String,System.Int32)">
<summary>
Adds a task based status item to be retrieved on a specific task on the Automation1 controller, with an
optional argument for the status item (if unsure about the status item argument, don't use this overload).
</summary>
<param name="taskStatusItem">The task based status item to retrieve.</param>
<param name="taskName">The task to retrieve the status item on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.TaskStatusItem,System.Int32)">
<summary>
Removes a task based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item to remove.</param>
<param name="taskIndex">The task that the status item was to be retrieved on.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.TaskStatusItem,System.Int32,System.Int32)">
<summary>
Removes a task based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item to remove.</param>
<param name="taskIndex">The task that the status item was to be retrieved on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.TaskStatusItem,System.String)">
<summary>
Removes a task based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item to remove.</param>
<param name="taskName">The task that the status item was to be retrieved on.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.TaskStatusItem,System.String,System.Int32)">
<summary>
Removes a task based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item to remove.</param>
<param name="taskName">The task that the status item was to be retrieved on.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemConfigurationCollection.Clear">
<summary>
Removes all task based status items from this configuration so they will not be retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection">
<summary>
Represents a collection of configured system based status items to retrieve from an Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what system based status items to retrieve.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.ConfiguredStatusItems">
<summary>
Gets the internal collection of user configured status items.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.Count">
<summary>
Gets the number of system based status items added to this configuration to be retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.AddFrom(Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection)">
<summary>
Adds all configured system based status items from another <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection"/> to this configuration.
</summary>
<param name="otherStatusItemSystemConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection"/> to add status items from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.SystemStatusItem)">
<summary>
Adds a system based status item to be retrieved from the Automation1 controller.
</summary>
<param name="systemStatusItem">The system based status item to retrieve.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.Add(Aerotech.Automation1.DotNet.SystemStatusItem,System.Int32)">
<summary>
Adds a system based status item to be retrieved from the Automation1 controller, with an
optional argument for the status item (if unsure about the status item argument, don't use this overload).
</summary>
<param name="systemStatusItem">The system based status item to retrieve.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.SystemStatusItem)">
<summary>
Removes a system based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="systemStatusItem">The system based status item to remove.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.Remove(Aerotech.Automation1.DotNet.SystemStatusItem,System.Int32)">
<summary>
Removes a system based status item from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="systemStatusItem">The system based status item to remove.</param>
<param name="argument">The argument for the status item, if unsure don't use this overload.</param>
<returns>true if the status item was found and removed; false if the status item was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemConfigurationCollection.Clear">
<summary>
Removes all system based status items from this configuration so they will not be retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection">
<summary>
Represents a collection of configured Industrial Ethernet mappings to retrieve from the Automation1 controller.
</summary>
<remarks>Use the Add and Remove methods to control what Industrial Ethernet mappings to retrieve.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.ConfiguredIndustrialEthernetMappings">
<summary>
Gets the internal collection of user configured Industrial Ethernet mappings.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.Count">
<summary>
Gets the number of Industrial Ethernet mappings added to this configuration to be retrieved from the Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.AddFrom(Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection)">
<summary>
Adds all configured Industrial Ethernet mappings from another <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection"/> to this configuration.
</summary>
<param name="otherIndustrialEthernetStatusItemConfiguration">The other <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection"/> to add status items from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.Add(System.String)">
<summary>
Adds an Industrial Ethernet mapping to be retrieved from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingName">The name of the Industrial Ethernet mapping to retrieve.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.Add(System.String,System.Int32)">
<summary>
Adds an index of an Industrial Ethernet mapping array to be retrieved from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to retrieve.</param>
<param name="industrialEthernetMappingArrayIndex">The index in the Industrial Ethernet mapping array to retrieve.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.Remove(System.String)">
<summary>
Removes a Industrial Ethernet mapping from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingName">The name of the Industrial Ethernet mapping to remove.</param>
<returns>True if the Industrial Ethernet mapping was found and removed; false if it was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.Remove(System.String,System.Int32)">
<summary>
Removes an index of an Industrial Ethernet mapping array from this configuration so it will not be retrieved from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to remove.</param>
<param name="industrialEthernetMappingArrayIndex">The index of the Industrial Ethernet mapping array to remove.</param>
<returns>True if the index of the Industrial Ethernet mapping array was found and removed; false if it was never added.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemConfigurationCollection.Clear">
<summary>
Removes all Industrial Ethernet mappings from this configuration so they will not be retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.StatusItemResult">
<summary>
Represents the result for a single status item retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StatusItemResult.#ctor(System.Int32,System.Double)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResult.StatusItemName">
<summary>
Gets the string name for the status item that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResult.Value">
<summary>
Gets the retrieved value for the status item.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResult.Argument">
<summary>
Gets the optional argument that was used for the retrieved status item result.
</summary>
<remarks>If you did not specify an argument then this will be <see cref="P:Aerotech.Automation1.DotNet.StatusItemConfiguration.DefaultStatusItemArgument"/>.</remarks>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisStatusItemResult">
<summary>
Represents the result for a single axis based status item retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemResult.#ctor(Aerotech.Automation1.DotNet.AxisStatusItem,System.Int32,System.Double,System.String,System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResult.AxisName">
<summary>
Gets the name of the axis that this status item result was retrieved on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResult.AxisIndex">
<summary>
Gets the index of the axis that this status item result was retrieved on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResult.AxisStatusItem">
<summary>
Gets the axis based status item that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResult.StatusItemName">
<summary>
Gets the string name for the axis based status item that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskStatusItemResult">
<summary>
Represents the result for a single task based status item retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemResult.#ctor(Aerotech.Automation1.DotNet.TaskStatusItem,System.Int32,System.Double,System.String,System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResult.TaskName">
<summary>
Gets the name of the task that this status item result was retrieved on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResult.TaskIndex">
<summary>
Gets the index of the task that this status item result was retrieved on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResult.TaskStatusItem">
<summary>
Gets the task based status item that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResult.StatusItemName">
<summary>
Gets the string name for the task based status item that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemStatusItemResult">
<summary>
Represents the result for a single system based status item retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemResult.#ctor(Aerotech.Automation1.DotNet.SystemStatusItem,System.Int32,System.Double)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemStatusItemResult.SystemStatusItem">
<summary>
Gets the system based status item that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemStatusItemResult.StatusItemName">
<summary>
Gets the string name for the system based status item that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult">
<summary>
Represents the result for a single Industrial Ethernet mapping retrieved from an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult.#ctor(System.String,System.Int32,System.Int32,System.Double)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult.IndustrialEthernetMappingName">
<summary>
Gets the name of the Industrial Ethernet mapping that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult.IndustrialEthernetMappingArrayIndex">
<summary>
Gets the index of the Industrial Ethernet mapping array that was retrieved from the Automation1 controller.
If the Industrial Ethernet mapping is not an array, this will return -1.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult.StatusItemName">
<summary>
Gets the name of the Industrial Ethernet mapping that was retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.StatusItemResults">
<summary>
Represents results for status items retrieved from an Automation1 controller using the <see cref="M:Aerotech.Automation1.DotNet.Status.GetStatusItems(Aerotech.Automation1.DotNet.StatusItemConfiguration)"/> method
via the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Status"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StatusItemResults.#ctor(Aerotech.Automation1.DotNet.AxisStatusItemResultCollection,Aerotech.Automation1.DotNet.TaskStatusItemResultCollection,Aerotech.Automation1.DotNet.SystemStatusItemResultCollection,Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection,Aerotech.Automation1.DotNet.ControllerUnits)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResults.Axis">
<summary>
Gets the collection of results for axis based status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResults.Task">
<summary>
Gets the collection of results for task based status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResults.System">
<summary>
Gets the collection of results for system based status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResults.IndustrialEthernet">
<summary>
Gets the collection of results for Industrial Ethernet mappings retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResults.Units">
<summary>
Gets the units of the retrieved status items. To convert the units of this <see cref="T:Aerotech.Automation1.DotNet.StatusItemResults"/> object
use <see cref="M:Aerotech.Automation1.DotNet.Status.ConvertUnits(Aerotech.Automation1.DotNet.ControllerUnits,Aerotech.Automation1.DotNet.StatusItemResults)"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResults.AllResults">
<summary>
Gets the sequence of all status items retrieved from the Automation1 controller (the combination of <see cref="P:Aerotech.Automation1.DotNet.StatusItemResults.Axis"/>, <see cref="P:Aerotech.Automation1.DotNet.StatusItemResults.Task"/>, and <see cref="P:Aerotech.Automation1.DotNet.StatusItemResults.System"/>).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.StatusItemResults.Count">
<summary>
Gets the total number of status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection">
<summary>
Represents the collection of results for axis based status items retrieved from an Automation1 controller.
</summary>
<remarks>Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> for each axis based status item retrieved.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.#ctor(Aerotech.Automation1.DotNet.AxisSet,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.AxisStatusItemResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.Count">
<summary>
Gets the number of axis based status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.AxisStatusItem,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> that represents the result for a single axis based status item
retrieved from the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item that was retrieved.</param>
<param name="axisIndex">The axis the status item was retrieved on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> for the specified axis based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.AxisStatusItem,System.Int32,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> that represents the result for a single axis based status item
retrieved from the Automation1 controller, with an optional argument for the status item (if unsure about the
status item argument, don't use this overload).
</summary>
<param name="axisStatusItem">The axis based status item that was retrieved.</param>
<param name="axisIndex">The axis the status item was retrieved on.</param>
<param name="argument">The argument used for the retrieved status item, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> for the specified axis based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.AxisStatusItem,System.String)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> that represents the result for a single axis based status item
retrieved from the Automation1 controller.
</summary>
<param name="axisStatusItem">The axis based status item that was retrieved.</param>
<param name="axisName">The axis the status item was retrieved on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> for the specified axis based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.AxisStatusItem,System.String,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> that represents the result for a single axis based status item
retrieved from the Automation1 controller, with an optional argument for the status item (if unsure about the
status item argument, don't use this overload).
</summary>
<param name="axisStatusItem">The axis based status item that was retrieved.</param>
<param name="axisName">The axis the status item was retrieved on.</param>
<param name="argument">The argument used for the retrieved status item, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> for the specified axis based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisStatusItemResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.AxisStatusItemResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection">
<summary>
Represents the collection of results for task based status items retrieved from an Automation1 controller.
</summary>
<remarks>Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> for each task based status item retrieved.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.#ctor(Aerotech.Automation1.DotNet.TaskSet,System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.TaskStatusItemResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.Count">
<summary>
Gets the number of task based status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.TaskStatusItem,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> that represents the result for a single task based status item
retrieved from the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item that was retrieved.</param>
<param name="taskIndex">The task the status item was retrieved on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> for the specified task based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.TaskStatusItem,System.Int32,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> that represents the result for a single task based status item
retrieved from the Automation1 controller, with an optional argument for the status item (if unsure about the
status item argument, don't use this overload).
</summary>
<param name="taskStatusItem">The task based status item that was retrieved.</param>
<param name="taskIndex">The task the status item was retrieved on.</param>
<param name="argument">The argument used for the retrieved status item, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> for the specified task based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.TaskStatusItem,System.String)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> that represents the result for a single task based status item
retrieved from the Automation1 controller.
</summary>
<param name="taskStatusItem">The task based status item that was retrieved.</param>
<param name="taskName">The task the status item was retrieved on.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> for the specified task based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.TaskStatusItem,System.String,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> that represents the result for a single task based status item
retrieved from the Automation1 controller, with an optional argument for the status item (if unsure about the
status item argument, don't use this overload).
</summary>
<param name="taskStatusItem">The task based status item that was retrieved.</param>
<param name="taskName">The task the status item was retrieved on.</param>
<param name="argument">The argument used for the retrieved status item, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> for the specified task based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.TaskStatusItemResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.TaskStatusItemResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemStatusItemResultCollection">
<summary>
Represents the collection of results for system based status items retrieved from an Automation1 controller.
</summary>
<remarks>Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> for each system based status item retrieved.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemResultCollection.#ctor(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.SystemStatusItemResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemStatusItemResultCollection.Count">
<summary>
Gets the number of system based status items retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.SystemStatusItem)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> that represents the result for a single system based status item
retrieved from the Automation1 controller.
</summary>
<param name="systemStatusItem">The system based status item that was retrieved.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> for the specified system based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemStatusItemResultCollection.Item(Aerotech.Automation1.DotNet.SystemStatusItem,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> that represents the result for a single system based status item
retrieved from the Automation1 controller, with an optional argument for the status item (if unsure about the
status item argument, don't use this overload).
</summary>
<param name="systemStatusItem">The system based status item that was retrieved.</param>
<param name="argument">The argument used for the retrieved status item, if unsure don't use this overload.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> for the specified system based status item; or null if the status item
was not configured to be retrieved.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemStatusItemResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.SystemStatusItemResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection">
<summary>
Represents the collection of results for Industrial Ethernet mappings retrieved from an Automation1 controller.
</summary>
<remarks>Use the indexers to get a <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> for each Industrial Ethernet mapping retrieved.</remarks>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection.#ctor(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection.Count">
<summary>
Gets the number of Industrial Ethernet mappings retrieved from the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection.Item(System.String)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> that represents the result for a single Industrial Ethernet mapping
retrieved from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingName">The Industrial Ethernet mapping that was retrieved.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> for the specified Industrial Ethernet mapping; or null if the Industrial Ethernet mapping
was not configured to be retrieved.</returns>
</member>
<member name="P:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection.Item(System.String,System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> that represents the result for a single index of a Industrial Ethernet mapping array
retrieved from the Automation1 controller.
</summary>
<param name="industrialEthernetMappingArrayName">The Industrial Ethernet mapping array that was retrieved.</param>
<param name="industrialEthernetMappingArrayIndex">The index of the Industrial Ethernet mapping array that was retrieved.</param>
<returns>The <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> for the specified Industrial Ethernet mapping; or null if the Industrial Ethernet mapping
was not configured to be retrieved.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> objects.
</summary>
<returns>An enumerator that can be used to iterate through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> objects.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResultCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection of retrieved <see cref="T:Aerotech.Automation1.DotNet.IndustrialEthernetStatusItemResult"/> objects.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.StatusItemHelper">
<summary>
Helpers for dealing with status items.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StatusItemHelper.GetDerivativeLevelForStatusItem(System.Int32)">
<summary>
Looks up and returns the derivative level (none, position, velocity, acceleration, jerk) of a status item ID.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.StatusItemHelper.GetContextForStatusItem(System.Int32)">
<summary>
Looks up and returns the context (system, axis, task) of a status item ID.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisStatusItem">
<summary>
Represents an axis based status item that can be retrieved from the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionFeedback">
<summary>This item returns the position feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommand">
<summary>This item returns the position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionError">
<summary>This item returns the position error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityFeedback">
<summary>This item returns the velocity feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityCommand">
<summary>This item returns the commanded velocity of the axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityError">
<summary>This item returns the velocity error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationCommand">
<summary>This item returns the value of the acceleration command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CurrentFeedback">
<summary>This item returns the current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CurrentCommand">
<summary>This item returns the current command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CurrentError">
<summary>This item returns the current error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogInput0">
<summary>This item returns the value of analog input 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogInput1">
<summary>This item returns the value of analog input 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommandRaw">
<summary>This item returns the raw position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityCommandRaw">
<summary>This item returns the raw velocity command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AuxiliaryFeedback">
<summary>This item returns the feedback in encoder counts for the device connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DigitalInput">
<summary>This item returns the value of the 32-bit digital input word that is read from the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DigitalOutput">
<summary>This item returns the value of the 32-bit digital output word that is read from the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.WorkOffsetValue">
<summary>This item returns the value of the active work offset that is applied to the axis position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogInput2">
<summary>This item returns the value of analog input 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogInput3">
<summary>This item returns the value of analog input 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogOutput0">
<summary>This item returns the value of analog output 0.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogOutput1">
<summary>This item returns the value of analog output 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogOutput2">
<summary>This item returns the value of analog output 2.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogOutput3">
<summary>This item returns the value of analog output 3.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PsoStatus">
<summary>This item returns the value of the PSO Status word. The data type of this item is the PsoStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CoordinatedPositionTarget">
<summary>This item returns the coordinated target position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveStatus">
<summary>This item returns the value of the Drive Status word. The data type of this item is the DriveStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AxisStatus">
<summary>This item returns the value of the Axis Status word. The data type of this item is the AxisStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AxisFault">
<summary>This item returns the value of the Axis Fault word. The data type of this item is the AxisFault enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationCommandRaw">
<summary>This item returns the value of the raw acceleration command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCalibrationAll">
<summary>This item returns the 1D + 2D position calibration contribution with the backlash contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionFeedbackRollover">
<summary>This item returns the position feedback with rollover applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommandRollover">
<summary>This item returns the position command with rollover applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityFeedbackAverage">
<summary>This item returns the average velocity feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CurrentFeedbackAverage">
<summary>This item returns the average current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AxisParameter">
<summary>This item returns the value of an axis parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.Backlash">
<summary>This item returns the backlash contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.HomeState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCalibration2D">
<summary>This item returns the 2D position calibration contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.NormalcyDebug">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.TotalMoveTime">
<summary>This item returns the total move time of the last move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionFeedbackDrive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.JerkCommandRaw">
<summary>This item returns the raw jerk command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.ProgramPositionCommand">
<summary>This item returns the program position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionOffset">
<summary>This item returns the value of the position offset.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommandRawBackwardsDiff">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityCommandRawBackwardsDiffDelta">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommandDrive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveStatusActual">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.WorkOffsetIndex">
<summary>This item returns the one-based index of the active work offset for this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.ProgramPositionFeedback">
<summary>This item returns the program position feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.JogTrajectoryStatus">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PingTest">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationTime">
<summary>This item returns the value of the axis acceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DecelerationTime">
<summary>This item returns the value of the axis deceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationRate">
<summary>This item returns the value of the axis acceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DecelerationRate">
<summary>This item returns the value of the axis deceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationType">
<summary>This item returns the axis acceleration type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DecelerationType">
<summary>This item returns the axis deceleration type.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationMode">
<summary>This item returns the axis acceleration mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DecelerationMode">
<summary>This item returns the axis deceleration mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.ProgramPosition">
<summary>This item returns the program position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.SpeedTarget">
<summary>This item returns the target speed for an axis in a RAPID move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommandPacket">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveSmcMotionState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommandRawCal">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityCommandRawCal">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.VelocityCommandDrive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationCommandDrive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.GalvoLaserOutputRaw">
<summary>This item returns the raw value of the galvo laser output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketInt32">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketInt16">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketInt8">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketDouble">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketFloat">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfaceCommandCode">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationFeedback">
<summary>This item returns the value of the acceleration feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationCommandRawCal">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCalibrationAllDrive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.BacklashTarget">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveMotionRate">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveMotionDelay">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CalibrationAdjustmentValue">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.ServoLoopFeedforwardControlEffortRaw">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketInfoBitValue">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationError">
<summary>This item returns the value of the acceleration error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.SuppressedFaults">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketStreamingData">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionCommandRawUnfiltered">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.TransitionOffsetErrors">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.FreezeVelocityCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.FreezeVelocityFeedback">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.InternalPositionOffsets">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.StatusHighLevelOffsetsLastMsec">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.ProgramVelocityCommand">
<summary>This item returns the program velocity command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.ProgramVelocityFeedback">
<summary>This item returns the program velocity feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveMotionDelayLive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveCommunicationDelay">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveCommunicationDelayLive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketResponseInt32">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketResponseInt16">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketResponseInt8">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketResponseDouble">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketResponseFloat">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketBit">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePacketResponseBit">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.SpeedTargetActual">
<summary>This item returns the limited target speed for an axis in a RAPID move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CoordinatedDistanceRemaining">
<summary>This item returns the distance remaining in a coordinated motion.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AmplifierPeakCurrent">
<summary>This item returns the peak current rating of the amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.ServoUpdateRate">
<summary>This item returns the servo update rate in kilohertz.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.SafeZoneState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PositionErrorGalvo">
<summary>This item returns the position error of the galvo scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.MoveReferencePosition">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.MoveReferenceOffsetCutterRadius">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.MoveReferenceOffsetCornerRounding">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.MoveReferenceOffsetTotal">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PiezoVoltageCommand">
<summary>This item returns the voltage command for a piezo axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PiezoVoltageFeedback">
<summary>This item returns voltage feedback for a piezo axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DistanceLog">
<summary>This item returns the total distance traveled by this axis.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.MaximumVoltage">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CommandOutputType">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.GalvoLaserOutputRawAdvance">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.GalvoLaserOnDelay">
<summary>This item returns the time that the Nmark will command the laser to go on relative to the rising edge of the Galvo Laser Output signal.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.GalvoLaserOffDelay">
<summary>This item returns the time that the Nmark will command the laser to go off relative to the falling edge of the Galvo Laser Output signal.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.CalibrationAdjustmentState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccuracyCorrectionStartingPosition">
<summary>This item returns the minimum position that is corrected by accuracy calibration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccuracyCorrectionEndingPosition">
<summary>This item returns the maximum position that is corrected by accuracy calibration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveCommandsDelayed">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveCommandsLost">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.StoStatus">
<summary>This item returns the value of the STO Status word. The data type of this item is the StoStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveAssert">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PrimaryFeedback">
<summary>This item returns the feedback in encoder counts for the device connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AccelerationSCurvePercentage">
<summary>This item returns the value of the axis acceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DecelerationSCurvePercentage">
<summary>This item returns the value of the axis deceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveArraySize">
<summary>This item returns the size of the drive array buffer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.GantryMarkerDifference">
<summary>This item returns the distance between the markers of each gantry spar along the linear direction of travel.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.PrimaryFeedbackStatus">
<summary>This item returns the value of the Primary Feedback Status word. The data type of this item is the PrimaryFeedbackStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.HomeTargetPosition">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.GantryRealignmentMoveTargetPosition">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.GantryDriveControlRealignmentState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveInterfacePositionCommandPhysical">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.DriveControlReason">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.SyncPortAPosition">
<summary>This item returns the Sync Port A position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.SyncPortBPosition">
<summary>This item returns the Sync Port B position.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogOutput4">
<summary>This item returns the value of analog output 4.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.AnalogOutput5">
<summary>This item returns the value of analog output 5.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AxisStatusItem.MoveReferenceOffsetCutterOffset">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.TaskStatusItem">
<summary>
Represents a task based status item that can be retrieved from the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.ProgramLineNumber">
<summary>This item returns the value of the program line number.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedFlags">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedArcStartAngle">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedArcEndAngle">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedArcRadius">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedArcRadiusError">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedPositionCommand">
<summary>This item returns the coordinated position command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedSpeedCommand">
<summary>This item returns the absolute value of the coordinated velocity command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedAccelerationCommand">
<summary>This item returns the absolute value of the coordinated acceleration command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedTotalDistance">
<summary>This item returns the total distance of the coordinated move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedPercentDone">
<summary>This item returns the percentage of the coordinated move that has been completed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedPositionCommandBackwardsDiff">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskParameter">
<summary>This item returns the value of an task parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskError">
<summary>This item returns the task error that is currently active, or zero if there is no error.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskWarning">
<summary>This item returns the task warning that is currently active, or zero if there is no warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedSpeedTargetActual">
<summary>This item returns the actual target speed for dominant axes in a coordinated move. The actual target speed may differ from the commanded speed if the move does not reach constant velocity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.DependentCoordinatedSpeedTargetActual">
<summary>This item returns the actual target speed for dependent axes in a coordinated move. The actual target speed may differ from the commanded speed if the move does not reach constant velocity.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskStatus0">
<summary>This item returns the value of the Task Status 0 word. The data type of this item is the TaskStatus0 enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskStatus1">
<summary>This item returns the value of the Task Status 1 word. The data type of this item is the TaskStatus1 enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskStatus2">
<summary>This item returns the value of the Task Status 2 word. The data type of this item is the TaskStatus2 enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.SpindleSpeedTarget">
<summary>This item returns the spindle target speed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinateSystem1I">
<summary>This item returns the axis index assigned to the I-axis of coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinateSystem1J">
<summary>This item returns the axis index assigned to the J-axis of coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinateSystem1K">
<summary>This item returns the axis index assigned to the K-axis of coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinateSystem1Plane">
<summary>This item returns the active plane index for coordinate system 1.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.Mfo">
<summary>This item returns the MFO value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedSpeedTarget">
<summary>This item returns the target speed for dominant axes in a coordinated move. The target speed is set using the F command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.DependentCoordinatedSpeedTarget">
<summary>This item returns the target speed for dependent axes in a coordinated move. The dependent target speed is set using the E command.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedAccelerationRate">
<summary>This item returns the value of the coordinated acceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedDecelerationRate">
<summary>This item returns the value of the coordinated deceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedAccelerationTime">
<summary>This item returns the value of the coordinated acceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedDecelerationTime">
<summary>This item returns the value of the coordinated deceleration time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskMode">
<summary>This item returns the value of the Task Mode word. The data type of this item is the TaskMode enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskState">
<summary>This item returns the current Task State.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskStateInternal">
<summary>This item returns the current internal task state.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.ExecutionMode">
<summary>This item returns the task execution mode.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.EnableAlignmentAxes">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedGalvoLaserOutput">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedMotionRate">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedTaskCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.EnableState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.LookaheadMovesExamined">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.ProfileControlMask">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedArcRadiusReciprocal">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionEngineStage">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedTimeScale">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedTimeScaleDerivative">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovSpeedScale">
<summary>This item returns the instantaneous speed scaling of your marking and non-marking moves in IFOV. A value of 1.0 indicates full programmed speed.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovSpeedScaleAverage">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovGenerationFrameCounter">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovGenerationTimeOriginal">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovGenerationTimeModified">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovCoordinatedPositionCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovCoordinatedSpeedCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovCenterPointH">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovCenterPointV">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovTrajectoryCount">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovTrajectoryIndex">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovAttemptCode">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovGenerationFrameIndex">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovMaximumVelocity">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovIdealVelocity">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskInternalDebug">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovCoordinatedAccelerationCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovFovPositionH">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovFovPositionV">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovFovDimensionH">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.IfovFovDimensionV">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionBufferElements">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionBufferMoves">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionLineNumber">
<summary>This item returns the program line number of the current move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionBufferRetraceMoves">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionBufferRetraceElements">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionBufferIndex">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionBufferIndexLookahead">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionBufferProcessingBlocked">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.ActiveMoveValid">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskExecutionLines">
<summary>This item returns the number of program lines executed during the last millisecond.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.SchedulerTaskHolds">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.SchedulerProgramLoopRuns">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.SchedulerTaskBlocked">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CriticalSectionsActive">
<summary>This item returns the current number of active critical sections.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.AxesSlowdownReason">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskExecutionTime">
<summary>This item returns the processor time used by the given task in the current millisecond.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskExecutionTimeMaximum">
<summary>This item returns the maximum processor time used by the given task.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskExecutionLinesMaximum">
<summary>This item returns the maximum number of program lines executed by the task in a millisecond.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.LookaheadDecelReason">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.LookaheadDecelMoves">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.LookaheadDecelDistance">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.ProgramCounter">
<summary>This item returns the value of the program counter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.StackPointer">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.FramePointer">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.StringStackPointer">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.ProgramLineNumberSourceFileId">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionLineNumberSourceFileId">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.ProgramLineNumberSourcePathId">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.MotionLineNumberSourcePathId">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.StringArgumentStackPointer">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedAccelerationSCurvePercentage">
<summary>This item returns the value of the coordinated acceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CoordinatedDecelerationSCurvePercentage">
<summary>This item returns the value of the coordinated deceleration S-curve percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.DependentCoordinatedAccelerationRate">
<summary>This item returns the value of the dependent coordinated acceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.DependentCoordinatedDecelerationRate">
<summary>This item returns the value of the dependent coordinated deceleration rate.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CriticalSectionTimeout">
<summary>This item returns the current critical section timeout in microseconds.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CommandQueueCapacity">
<summary>This item returns the maximum number of commands that can simultaneously fit in the command queue.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CommandQueueUnexecutedCount">
<summary>This item returns the number of commands in the command queue that have not finished executing. This item includes any command that is currently executing, if there is one. An individual command can contain one or more lines of AeroScript.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CommandQueueTimesEmptied">
<summary>This item returns the number of times that the command queue has become empty.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CommandQueueExecutedCount">
<summary>This item returns the number of commands that have been executed from the command queue over its entire lifespan. An individual command can contain one or more lines of AeroScript.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.CommandQueueLineNumber">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskReal">
<summary>This item returns the value of a task real.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.TaskStatusItem.TaskInteger">
<summary>This item returns the value of a task integer.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemStatusItem">
<summary>
Represents a system based status item that can be retrieved from the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.VirtualBinaryInput">
<summary>This item returns the value of a 16-bit virtual binary input word. To get the value of a single input bit, use the Virtual Binary Input Bit item as an alternative.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.VirtualBinaryOutput">
<summary>This item returns the value of a 16-bit virtual binary output word. To get the value of a single output bit, use the Virtual Binary Output Bit item as an alternative.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.VirtualRegisterInput">
<summary>This item returns the value of a virtual register input.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.VirtualRegisterOutput">
<summary>This item returns the value of a virtual register output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.Timer">
<summary>This item returns the value of a system timer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.TimerPerformance">
<summary>This item returns the value of a system performance timer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.GlobalReal">
<summary>This item returns the value of a global real.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.CommunicationRealTimeErrors">
<summary>This item returns the number of times that the Automation1 did not have sufficient time to complete all of its operations. Refer to Optimizing Automation1 Performance for instructions about how to optimize the controller settings and prevent this problem.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.LibraryCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.DataCollectionSampleTime">
<summary>This item returns the data collection sample time.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.DataCollectionSampleIndex">
<summary>This item returns the data collection sample index.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientConnected">
<summary>This item returns a boolean value that indicates if the connection is established.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusServerConnected">
<summary>This item returns a boolean value that indicates if the connection is established.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientError">
<summary>This item returns the value of the last system error code to occur on this connection.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusServerError">
<summary>This item returns the value of the last system error code to occur on this connection.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.StopWatchTimer">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ScopetrigId">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EstimatedProcessorUsage">
<summary>This item returns the estimated SMC processor usage as a percentage.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.DataCollectionStatus">
<summary>This item returns the value of the Data Collection Flags word. The data type of this item is the DataCollectionFlags enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.SignalLogState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.SafeZoneViolationMask">
<summary>This item returns the mask of violated safe zones. Once a zone is violated it will remain violated until any one of the axes in the safe zone is moved again.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.SafeZoneActiveMask">
<summary>This item returns the mask of active safe zones.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientInputWords">
<summary>This item returns the current state of the Modbus Client Input Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientOutputWords">
<summary>This item returns the current state of the Modbus Client Output Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientInputBits">
<summary>This item returns the current state of the Modbus Client Input Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientOutputBits">
<summary>This item returns the current state of the Modbus Client Output Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientOutputBitsStatus">
<summary>This item returns the current state of the Modbus Client Output Bits Status I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientOutputWordsStatus">
<summary>This item returns the current state of the Modbus Client Output Words Status I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusServerInputWords">
<summary>This item returns the current state of the Modbus Server Input Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusServerOutputWords">
<summary>This item returns the current state of the Modbus Server Output Words I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusServerInputBits">
<summary>This item returns the current state of the Modbus Server Input Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusServerOutputBits">
<summary>This item returns the current state of the Modbus Server Output Bits I/O.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.SystemParameter">
<summary>This item returns the value of a system parameter.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ThermoCompSensorTemperature">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ThermoCompControllingTemperature">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ThermoCompCompensatingTemperature">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ThermoCompStatus">
<summary>If non-zero, the ThermoComp status word is masked with this value.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.GlobalInteger">
<summary>This item returns the value of a global integer.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.AliveAxesMask">
<summary>This item returns the mask of axes that we are communicating with.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.SignalLogPointsStored">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ControllerInitializationWarning">
<summary>This item returns the warning generated during controller initialization, or zero if there is no warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.StopWatchTimerMin">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.StopWatchTimerMax">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.StopWatchTimerAvg">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EthercatEnabled">
<summary>This item indicates if the controller has been configured to run the EtherCAT stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EthercatError">
<summary>This item returns the value of the last system error code to occur in the EtherCAT stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EthercatTxPdo">
<summary>This item returns the value of the Tx PDO slot specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EthercatTxPdoSize">
<summary>This item returns the size of the data in the Tx PDO channel as the number of bytes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EthercatRxPdo">
<summary>This item returns the value of the Rx PDO slot specified.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EthercatRxPdoSize">
<summary>This item returns the size of the data in the Rx PDO channel as the number of bytes.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EthercatState">
<summary>This item returns the current state of the EtherCAT stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusClientEnabled">
<summary>This item indicates if the controller has been configured to run the Modbus Client.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ModbusServerEnabled">
<summary>This item indicates if the controller has been configured to run the Modbus Server.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.HyperWireExternalSynchronizationActive">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.HyperWireExternalSynchronizationFrequency">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.HyperWireExternalSynchronizationLagging">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.HyperWireExternalSynchronizationAdjustmentNanoseconds">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.CallbackSlotProcessingState">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.ControllerAssertCount">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.VirtualBinaryInputBit">
<summary>This item returns the value of a virtual binary input bit.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.VirtualBinaryOutputBit">
<summary>This item returns the value of a virtual binary output bit.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EtherNetIpAdapterEnabled">
<summary>This item identifies if the controller is configured to run the EtherNet/IP adapter stack.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EtherNetIpAdapterConnected">
<summary>This item identifies if the EtherNet/IP adapter has an active connection with an EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EtherNetIpAdapterError">
<summary>This item returns the value of the last system error code that occurred on this connection.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EtherNetIpAdapterInputIntegerSize">
<summary>This item identifies the configured size of the EtherNet/IP input integer assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EtherNetIpAdapterInputFloatSize">
<summary>This item identifies the configured size of the EtherNet/IP input float assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EtherNetIpAdapterOutputIntegerSize">
<summary>This item identifies the configured size of the EtherNet/IP output integer assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.SystemStatusItem.EtherNetIpAdapterOutputFloatSize">
<summary>This item identifies the configured size of the EtherNet/IP output float assembly as configured on the EtherNet/IP scanner.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.DriveItem">
<summary>
Represents a drive supplied item that can be retrieved from the Automation1 controller.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PhaseACurrentFeedback">
<summary>This item returns the phase A current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PhaseBCurrentFeedback">
<summary>This item returns the phase B current feedback.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.EncoderSine">
<summary>This item returns the encoder sine value in A/D counts after correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.EncoderCosine">
<summary>This item returns the encoder cosine value in A/D counts after correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FrequencyResponseBefore">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FrequencyResponseAfter">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryInt32">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryFloat">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryDouble">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerDebug">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryInt16">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryInt8">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ServoRounding">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoCounter0">
<summary>This item returns the value of PSO counter 0 in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoCounter1">
<summary>This item returns the value of PSO counter 1 in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoCounter2">
<summary>This item returns the value of PSO counter 2 in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow0">
<summary>This item returns the value of the PSO window 0 counter in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow1">
<summary>This item returns the value of the PSO window 1 counter in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveDataCaptureSamples">
<summary>This item returns the number of drive data capture samples that have been acquired.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PositionCommandGalvo">
<summary>This item returns the position command of the galvo scanner. This value represents the location of the scanner within its field-of-view, including calibration, but does not include marking-on-the-fly.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PrimaryEnDatAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the EnDat encoder connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ServoLoopControlEffort">
<summary>This item returns the value of the servo loop control effort when used with the MIMO control features.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PhaseAVoltageCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PhaseBVoltageCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PhaseCVoltageCommand">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FpgaVersion">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTypeId">
<summary>This item returns an ID number identifying the type of drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow0ArrayIndex">
<summary>This item returns the current array index for window 0 when using the PsoWindowConfigureArrayRanges() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow1ArrayIndex">
<summary>This item returns the current array index for window 1 when using the PsoWindowConfigureArrayRanges() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoDistanceArrayIndex">
<summary>This item returns the current array index for the PsoDistanceConfigureArrayDistances() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AmplifierTemperature">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoBitArrayIndex">
<summary>This item returns the current array index for the PsoBitmapConfigureArray() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.MxAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the optional Encoder Multiplier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.SettlingTime">
<summary>This item returns the settling time in milliseconds for the most recently completed move.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.InternalStatusCode">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FirmwareVersionMajor">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FirmwareVersionMinor">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FirmwareVersionPatch">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FirmwareVersionBuild">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerDebugMax">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.MarkerSearchDistance">
<summary>This item returns the distance that was traveled while searching for the marker.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PositionFeedbackGalvo">
<summary>This item returns the position feedback of the galvo scanner. This value represents the location of the scanner within its field-of-view, including calibration, but does not include marking-on-the-fly.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.LatchedMarkerPosition">
<summary>This item returns the position in encoder counts at which the marker was detected during the home cycle.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PrimaryBissAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the BiSS encoder connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FaultPositionFeedback">
<summary>This item returns the position at which the most recent axis fault occurred.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.MotorCommutationAngle">
<summary>This item returns the angle of commutation for the motor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ExpansionBoardOption">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.BusVoltage">
<summary>This item returns the measured bus voltage of this drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.TimeSinceReset">
<summary>This item returns the amount of time since the last reset.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ServoLoopFeedforwardControlEffort">
<summary>This item returns the feedforward contribution to the servo loop output as determined by the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.LastTickCounter">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.BoardRevision">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.GalvoLaserOutput">
<summary>This item returns the value of the galvo laser output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.GalvoLaserPowerCorrectionOutput">
<summary>This item returns the value of the analog output after laser power correction is applied. If laser power correction is not enabled, it will return zero. Refer to Galvo Power Correction Overview for more information.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.CapacitanceSensorRawPosition">
<summary>This item returns the raw reading from the capacitance sensor feedback device.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PositionCalibrationGalvo">
<summary>This item returns the 2D galvo calibration contribution.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.BusVoltageNegative">
<summary>This item returns the measured negative bus voltage of this drive. This item is valid only for drives with a linear amplifier.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ProcessorTemperature">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.InternalStatusTimestamp">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AnalogSensorInput">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.MotorTemperature">
<summary>This item returns the motor temperature in degrees Celsius.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PrimaryBissStatus">
<summary>This item returns the value of the Primary Biss Status word. The data type of this item is the BissStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoExternalSyncFrequency">
<summary>This item returns the frequency in kHz of the PSO external sync signal.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.EncoderSineRaw">
<summary>This item returns the encoder sine value in A/D counts before correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.EncoderCosineRaw">
<summary>This item returns the encoder cosine value in A/D counts before correction is applied.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FpgaTemperature">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PrimaryEnDatStatus">
<summary>This item returns the value of the Primary EnDat Status word. The data type of this item is the EnDatStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerHighPriorityThread">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerLowPriorityThread">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerLowPriorityPacket">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerServoPacket">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerServoThread">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerCurrentPacket">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerCommonCoreThread">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerServoCorePacket">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.MultiplierOption">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ServoLoopFeedbackInput0">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ServoLoopFeedbackInput1">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.FaultSubcode">
<summary>This item returns additional information regarding the cause of an axis fault. The sub-code is not used for every fault.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ProcessorTemperatureMax">
<summary>This item returns the maximum temperature in degrees Celsius of all internal processor temperature sensors.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerHyperWireDma">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AmplifierTemperatureMax">
<summary>This item returns the maximum amplifier heat sink temperature in degrees Celsius.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryEnDatAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the EnDat encoder connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryEnDatStatus">
<summary>This item returns the value of the Auxiliary EnDat Status word. The data type of this item is the EnDatStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryBissAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the BiSS encoder connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryBissStatus">
<summary>This item returns the value of the Auxiliary Biss Status word. The data type of this item is the BissStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoOption">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.RatedMotorSupplyVoltageOption">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AbsoluteEncoderOption">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryFeedbackStatus">
<summary>This item returns the value of the Auxiliary Feedback Status word. The data type of this item is the AuxiliaryFeedbackStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AmplifierStatus">
<summary>This item returns the value of the Amplifier Status word. The data type of this item is the AmplifierStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.LatchedCwLimitPosition">
<summary>This item returns the position at which the CW limit was detected during execution of the MoveToLimitCw() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.LatchedCcwLimitPosition">
<summary>This item returns the position at which the CCW limit was detected during execution of the MoveToLimitCcw() function.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.GalvoLaserFpgaTransitionDelay">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PiezoAccumulatedCharge">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PiezoChargingTime">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PrimarySsiAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the SSI encoder connected to the Primary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PrimarySsiStatus">
<summary>This item returns the value of the Primary Ssi Status word. The data type of this item is the SsiStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliarySsiAbsolutePosition">
<summary>This item returns the absolute position in encoder counts for the SSI encoder connected to the Auxiliary input on the drive.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliarySsiStatus">
<summary>This item returns the value of the Auxiliary Ssi Status word. The data type of this item is the SsiStatus enum.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoDistanceActiveDistance">
<summary>This item returns active PSO distance in counts.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow0ActiveLowerBound">
<summary>This item returns the lower bound of the active PSO window 0 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow0ActiveUpperBound">
<summary>This item returns the upper bound of the active PSO window 0 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow1ActiveLowerBound">
<summary>This item returns the lower bound of the active PSO window 1 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWindow1ActiveUpperBound">
<summary>This item returns the upper bound of the active PSO window 1 range.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWaveformActiveTotalTime">
<summary>This item returns the total time of the active PSO waveform configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWaveformActiveOnTime">
<summary>This item returns the on time of the active PSO waveform configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoWaveformActivePulseCount">
<summary>This item returns the pulse count of the active PSO waveform configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PsoEventActiveBitValue">
<summary>This item returns the bit value of the active PSO event configuration.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerDriveBasedControllerOutputDma">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveTimerPcieInboundFsm">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PrimaryFeedbackServo">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryFeedbackServo">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveStackUsage">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ShuntResistorTemperature">
<summary>This item returns the estimated temperature of the shunt resistor.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.HighSpeedOutputEncoderPosition">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryEncoderOutputPosition">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.SyncPortAStatus">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.SyncPortBStatus">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.HighSpeedOutputEncoderStatus">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AuxiliaryEncoderOutputStatus">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryUInt32">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryUInt16">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DriveMemoryUInt8">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.CurrentLoopFeedbackControlEffort">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.CurrentLoopFeedforwardControlEffort">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.HighSpeedInput">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PositionCommandEncoder">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.PositionFeedbackEncoder">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.ServoLoopFeedbackControlEffort">
<summary>This item returns the feedback control contribution to the servo loop output.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.AnalogOutputHardwareStatus">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.DigitalOutputHardwareStatus">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DriveItem.EnhancedScannerControlOption">
<summary>This item is internal. Do not use this item unless Aerotech personnel instructs you to do so. Aerotech might change or remove this item without warning.</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageBox">
<summary>
A class to register and unregister to the app message box that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageBox.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageBox.Register(System.Func{Aerotech.Automation1.DotNet.AppMessageBoxArguments,System.Int32})">
<summary>
Register for the app message box that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageBox.Unregister"/>.
</summary>
<param name="handler">
The code to execute when the app message is raised by an AeroScript program on this task.
Returns the button clicked on the message box.
</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageBox.Unregister">
<summary>
Unregisters for the app box message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageBoxArguments">
<summary>
Represents all inputs provided by AeroScript when the app message box is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageBoxArguments.#ctor(System.Int32,System.String,System.String,System.String[],Aerotech.Automation1.DotNet.AppMessageSeverity,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageBoxArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageBoxArguments.Title">
<summary>
Gets the title.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageBoxArguments.Message">
<summary>
Gets the message.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageBoxArguments.Buttons">
<summary>
Gets the buttons to use.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageBoxArguments.Severity">
<summary>
Gets the severity.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageBoxArguments.ShouldTakeFocus">
<summary>
Gets whether or not focus should be taken.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageDisplay">
<summary>
A class to register and unregister to the display app message that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplay.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplay.Register(System.Action{Aerotech.Automation1.DotNet.AppMessageDisplayArguments})">
<summary>
Register for the display app message that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageDisplay.Unregister"/>.
</summary>
<param name="handler">The code to execute when the app message is raised by an AeroScript program on this task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplay.Unregister">
<summary>
Unregisters for the display app message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageDisplayArguments">
<summary>
Represents all inputs provided by AeroScript when the display app message is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplayArguments.#ctor(System.Int32,System.String,Aerotech.Automation1.DotNet.AppMessageSeverity)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageDisplayArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageDisplayArguments.Message">
<summary>
Gets the message.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageDisplayArguments.Severity">
<summary>
Gets the severity.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageDisplayDismiss">
<summary>
A class to register and unregister to the display dismiss app message that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplayDismiss.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplayDismiss.Register(System.Action{Aerotech.Automation1.DotNet.AppMessageDisplayDismissArguments})">
<summary>
Register for the display dismiss app message that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageDisplayDismiss.Unregister"/>.
</summary>
<param name="handler">
The code to execute when the app message is raised by an AeroScript program on this task.
</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplayDismiss.Unregister">
<summary>
Unregisters for the display dismiss app message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageDisplayDismissArguments">
<summary>
Represents all inputs provided by AeroScript when the display dismiss app message is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageDisplayDismissArguments.#ctor(System.Int32,Aerotech.Automation1.DotNet.AppMessageSeverity)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageDisplayDismissArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageDisplayDismissArguments.Severity">
<summary>
Gets the severity.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageFileOpen">
<summary>
A class to register and unregister to the file open app message that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileOpen.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileOpen.Register(System.Func{Aerotech.Automation1.DotNet.AppMessageFileOpenArguments,System.String})">
<summary>
Register for the file open app message that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageFileOpen.Unregister"/>.
</summary>
<param name="handler">
The code to execute when the app message is raised by an AeroScript program on this task.
Returns the file to open.
</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileOpen.Unregister">
<summary>
Unregisters for the app file open message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments">
<summary>
Represents all inputs provided by AeroScript when the file open app message is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments.#ctor(System.Int32,System.String,System.String,System.String,System.String,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments.Title">
<summary>
Gets the title.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments.Directory">
<summary>
Gets the directory.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments.DefaultFile">
<summary>
Gets the default file.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments.Filter">
<summary>
Gets the filter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileOpenArguments.ShouldTakeFocus">
<summary>
Gets whether or not focus should be taken.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageFileSave">
<summary>
A class to register and unregister to the file save app message that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileSave.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileSave.Register(System.Func{Aerotech.Automation1.DotNet.AppMessageFileSaveArguments,System.String})">
<summary>
Register for the file save app message that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageFileSave.Unregister"/>.
</summary>
<param name="handler">
The code to execute when the app message is raised by an AeroScript program on this task.
Returns the file to save.
</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileSave.Unregister">
<summary>
Unregisters for the file save app message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments">
<summary>
Represents all inputs provided by AeroScript when the file save app message is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments.#ctor(System.Int32,System.String,System.String,System.String,System.String,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments.Title">
<summary>
Gets the title.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments.Directory">
<summary>
Gets the directory.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments.DefaultFile">
<summary>
Gets the default file.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments.Filter">
<summary>
Gets the filter.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageFileSaveArguments.ShouldTakeFocus">
<summary>
Gets whether or not focus should be taken.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageInputBox">
<summary>
A class to register and unregister to the app input box message that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageInputBox.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageInputBox.Register(System.Func{Aerotech.Automation1.DotNet.AppMessageInputBoxArguments,System.String})">
<summary>
Register for the app input box message that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageInputBox.Unregister"/>.
</summary>
<param name="handler">
The code to execute when the app message is raised by an AeroScript program on this task.
Returns the text that was provided as input to the message input box.
</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageInputBox.Unregister">
<summary>
Unregisters for the app input box message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments">
<summary>
Represents all inputs provided by AeroScript when the app input box message is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments.#ctor(System.Int32,System.String,System.String,System.String,Aerotech.Automation1.DotNet.AppMessageSeverity,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments.Title">
<summary>
Gets the title.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments.Message">
<summary>
Gets the message.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments.DefaultText">
<summary>
Gets the default text.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments.Severity">
<summary>
Gets the severity.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageInputBoxArguments.ShouldTakeFocus">
<summary>
Gets whether or not focus should be taken.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageLamp">
<summary>
A class to register and unregister to the app lamp message that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageLamp.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageLamp.Register(System.Action{Aerotech.Automation1.DotNet.AppMessageLampArguments})">
<summary>
Register for the app lamp message that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageLamp.Unregister"/>.
</summary>
<param name="handler">The code to execute when the app message is raised by an AeroScript program on this task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageLamp.Unregister">
<summary>
Unregisters for the app lamp message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageLampArguments">
<summary>
Represents all inputs provided by AeroScript when the app lamp message is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageLampArguments.#ctor(System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageLampArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageLampArguments.Message">
<summary>
Gets the message.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageLampArguments.LampNumber">
<summary>
Gets the lamp number.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageLampArguments.Red">
<summary>
Gets the red value of the lamp's RGB color.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageLampArguments.Green">
<summary>
Gets the green value of the lamp's RGB color.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageLampArguments.Blue">
<summary>
Gets the blue value of the lamp's RGB color.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageMenu">
<summary>
A class to register and unregister to the app menu message that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageMenu.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageMenu.Register(System.Func{Aerotech.Automation1.DotNet.AppMessageMenuArguments,System.Int32})">
<summary>
Register for the app menu message that could be raised by an AeroScript program on this task.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first using <see cref="M:Aerotech.Automation1.DotNet.AppMessageMenu.Unregister"/>.
</summary>
<param name="handler">
The code to execute when the app message is raised by an AeroScript program on this task. Returns the index of the selected option.
</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageMenu.Unregister">
<summary>
Unregisters for the app menu message that could be raised by an AeroScript program on this task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageMenuArguments">
<summary>
Represents all inputs provided by AeroScript when the app menu message is raised.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AppMessageMenuArguments.#ctor(System.Int32,System.String,System.String,System.String[],System.Int32,Aerotech.Automation1.DotNet.AppMessageSeverity,System.Boolean)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageMenuArguments.TaskIndex">
<summary>
Gets the index of the task that this app message was raised on.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageMenuArguments.Title">
<summary>
Gets the title.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageMenuArguments.Message">
<summary>
Gets the message.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageMenuArguments.Options">
<summary>
Gets the set of options.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageMenuArguments.DefaultOption">
<summary>
Gets the default option.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageMenuArguments.Severity">
<summary>
Gets the severity.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AppMessageMenuArguments.ShouldTakeFocus">
<summary>
Gets whether or not focus should be taken.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTask">
<summary>
Represents a controller task on an Automation1 controller that can execute and run AeroScript programs.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTask.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ICompiler,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.TaskIndex">
<summary>
Gets the numeric index of this task which can be used to uniquely identify this task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.TaskName">
<summary>
Gets the string name of this task which can be used to uniquely identify this task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.Program">
<summary>
Gets a way to control AeroScript programs on this task (load, start, stop, etc.).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.Debug">
<summary>
Gets a way to debug running AeroScript programs and libraries on this task (manage breakpoints, step into, step over, etc.).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.Callback">
<summary>
Gets a way to register and unregister for callbacks that are raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.AppMessage">
<summary>
Gets a way to register and unregister for app messages that are raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.Status">
<summary>
Gets the current status for this task, returning a new <see cref="T:Aerotech.Automation1.DotNet.ControllerTaskStatus"/> which represents a moment in time for this task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTask.Motion">
<summary>
Gets a way to control the motion on this task (enable/disable retrace mode, enable/disable feedhold state, set MFO, etc.).
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskAppMessages">
<summary>
A class to register and unregister app messages that could be raised by an AeroScript program on a controller task on an Automation1 controller.
App messages can only be registered a single time. To change the registration of the app message, unregister the app message first.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.Box">
<summary>
Gets a way to register and unregister for the app message box that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.Display">
<summary>
Gets a way to register and unregister for the display app message that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.DisplayDismiss">
<summary>
Gets a way to register and unregister for the display dismiss app message that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.FileOpen">
<summary>
Gets a way to register and unregister for the file open app message that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.FileSave">
<summary>
Gets a way to register and unregister for the file save app message that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.InputBox">
<summary>
Gets a way to register and unregister for the app input box message that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.Menu">
<summary>
Gets a way to register and unregister for the app menu message that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskAppMessages.Lamp">
<summary>
Gets a way to register and unregister for the app lamp message that could be raised on this task by an AeroScript program.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AppMessageSeverity">
<summary>
Represents the severity of an app message.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AppMessageSeverity.Default">
<summary>
The message has default severity.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AppMessageSeverity.Information">
<summary>
The message contains information.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AppMessageSeverity.Warning">
<summary>
The message represents a warning.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.AppMessageSeverity.Error">
<summary>
The message represents an error.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskBreakpoints">
<summary>
A class to manage breakpoints for AeroScript programs and libraries on a task on an Automation1 controller. Breakpoints are added to AeroScript source
files in order to debug running programs and libraries.
Breakpoints added to AeroScript programs or static libraries are unique per task. Executing the same AeroScript program or static library on different tasks will have different
breakpoints. To clear all breakpoints from a program or static library for this task use the <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskBreakpoints.ClearAll(System.String)"/> method.
Breakpoints added to AeroScript dynamic libraries are the same across all tasks. Executing two different programs that import the same dynamic library will have the
same dynamic library breakpoints but different program breakpoints. To clear all breakpoints from a dynamic library for all tasks use
the <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskBreakpoints.ClearAll(System.String)"/> method.
Access an instance of this class through a logged in <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskBreakpoints.AddTo(System.String,System.Int32)">
<summary>
Adds a breakpoint to an AeroScript source file at the specified line number. When AeroScript execution reaches the specified line number
in the specified source file, the running program will pause.
Breakpoints added to programs or static libraries are unique per task. Breakpoints added to dynamic libraries are the same across all tasks.
</summary>
<param name="aeroScriptSourceFileName">The AeroScript source file to add a breakpoint to.</param>
<param name="lineNumber">The AeroScript source line number to add a breakpoint to.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskBreakpoints.RemoveFrom(System.String,System.Int32)">
<summary>
Removes a breakpoint from an AeroScript source file at the specified line number.
</summary>
<param name="aeroScriptSourceFileName">The AeroScript source file to remove a breakpoint from.</param>
<param name="lineNumber">The AeroScript source line number to remove a breakpoint from.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskBreakpoints.GetAll(System.String)">
<summary>
Returns the list of all breakpoints added to an AeroScript source file.
</summary>
<param name="aeroScriptSourceFileName">The AeroScript source file to get the breakpoints for.</param>
<returns>The list of AeroScript source line numbers that have breakpoints for the AeroScript source file on the specified task.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskBreakpoints.ClearAll(System.String)">
<summary>
Removes all breakpoints from an AeroScript source file.
</summary>
<param name="aeroScriptSourceFileName">The AeroScript source file to remove all breakpoints from.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskCallback">
<summary>
A class to register and unregister callbacks that could be raised by an AeroScript program on a controller task on an Automation1 controller.
Callbacks can only be registered a single time. To change the registration of the callback, unregister the callback first. To do that, see <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.Unregister(System.Int32)"/>.
To uniquely identify a callback, check against the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.CallbackId"/> property and the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.TaskIndex"/>
property which can be accessed through the <see cref="T:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments"/> object that is provided to your registered handler.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.Register(System.Int32,System.Func{Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments,Aerotech.Automation1.DotNet.ControllerTaskCallbackReturn})">
<summary>
Registers a callback that could be raised by an AeroScript program on this task. Callbacks can only be
registered to a single time. To change the registration of the callback, unregister it first. To do that,
see <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.Unregister(System.Int32)"/>.
</summary>
<param name="callbackId">A number that is uniquely identifies the callback per task.</param>
<param name="handler">The code to execute when the callback is raised by an AeroScript program on this task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.Unregister(System.Int32)">
<summary>
Unregisters a callback.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.getContextKey(System.Int32,System.Int32)">
<summary>
Gets the correct request id given the task index and callback id.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.RegisterCallbackHandler(System.Action)">
<summary>
Invokes the given registerer delegate to register for a callback but uniformly handles any registration errors to produce customer-facing exceptions.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallback.WrapCallbackHandler``2(``0,System.Func{``0,``1})">
<summary>
Wraps a callback processing method, making sure any exception being returned to the SMC is always a <see cref="T:Aerotech.Automation1.ControllerException"/>.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments">
<summary>
Represents all inputs provided by AeroScript when a callback is raised. To uniquely identify a task callback, check against the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.CallbackId"/>
property and the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.TaskIndex"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.#ctor(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.Int64},System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.String})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.TaskIndex">
<summary>
Gets the index of the task that this callback was raised on. To uniquely identify a task callback, check against the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.CallbackId"/> property and the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.TaskIndex"/> property.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.CallbackId">
<summary>
Gets the id of this callback. To uniquely identify a task callback, check against the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.CallbackId"/> property and the <see cref="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.TaskIndex"/> property.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.AeroScriptIntegerInputs">
<summary>
Gets the collection of AeroScript integer inputs (which are 64-bit long integers) provided by the running AeroScript program on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.AeroScriptRealInputs">
<summary>
Gets the collection of AeroScript real inputs (which are double precision floating point numbers) provided by the running AeroScript program on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackArguments.AeroScriptStringInputs">
<summary>
Gets the collection of AeroScript string inputs provided by the running AeroScript program on the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskCallbackReturn">
<summary>
Represents all outputs that are provided to AeroScript after a callback finishes.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCallbackReturn.#ctor(System.Int64[],System.Double[],System.String[])">
<summary>
Creates an instance of <see cref="T:Aerotech.Automation1.DotNet.ControllerTaskCallbackReturn"/> to represents all outputs that are provided to AeroScript after the callback finishes.
</summary>
<param name="aeroscriptIntegerOutputs">The collection of AeroScript integers (which are 64-bit long integers) to provide as output to the running AeroScript program on the Automation1 controller.</param>
<param name="aeroscriptRealOutputs">The collection of AeroScript reals (which are double precision floating point numbers) to provide as output to the running AeroScript program on the Automation1 controller.</param>
<param name="aeroscriptStringOutputs">The collection of AeroScript string to provide as output to the running AeroScript program on the Automation1 controller.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackReturn.AeroScriptIntegerOutputs">
<summary>
Gets the collection of AeroScript integers (which are 64-bit long integers) to provide as output to the running AeroScript program on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackReturn.AeroScriptRealOutputs">
<summary>
Gets the collection of AeroScript reals (which are double precision floating point numbers) to provide as output to the running AeroScript program on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCallbackReturn.AeroScriptStringOutputs">
<summary>
Gets collection of AeroScript string to provide as output to the running AeroScript program on the Automation1 controller.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskCollection">
<summary>
Represents a collection of controller tasks on an Automation1 controller, accessed by task name or task index.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCollection.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ICompiler,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet},System.Int32)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCollection.Count">
<summary>
Gets the number of tasks on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCollection.Item(System.Int32)">
<summary>
Gets the <see cref="T:Aerotech.Automation1.DotNet.ControllerTask"/> object for a specific task index.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskCollection.Item(System.String)">
<summary>
Gets the <see cref="T:Aerotech.Automation1.DotNet.ControllerTask"/> object for a specific task name.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the tasks on the Automation1 controller.
</summary>
<returns>An enumerator that can be used to iterate through the tasks on the Automation1 controller.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the tasks on the Automation1 controller.
</summary>
<returns>An enumerator that can be used to iterate through the tasks on the Automation1 controller.</returns>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskDebug">
<summary>
A class to debug running AeroScript programs and libraries on a task on an Automation1 controller (manage breakpoints, step into, step over, etc.).
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskDebug.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskDebug.Breakpoints">
<summary>
Gets a way to manage breakpoints for AeroScript programs and libraries on this task. Breakpoints are added to AeroScript source
files in order to debug running programs and libraries. When AeroScript execution encounters a breakpoint in a source file,
the running program will pause.
Breakpoints added to AeroScript programs or static libraries are unique per task. Executing the same AeroScript program or static
library on different tasks will have different breakpoints.
Breakpoints added to AeroScript dynamic libraries are the same across all tasks. Executing two different programs that import the same
dynamic library will have the same dynamic library breakpoints but different program breakpoints.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskDebug.StepInto">
<summary>
Performs a single line of program execution on the currently paused AeroScript program on this task, stepping into any function calls.
This method can only be called if there is an AeroScript program loaded on this task and it is paused.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskDebug.StepOver">
<summary>
Performs a single line of program execution on the currently paused AeroScript program on this task, stepping over any function calls.
This method can only be called if there is an AeroScript program loaded on this task and it is paused.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskDebug.StepOut">
<summary>
Performs execution on the currently paused AeroScript program on this task, stepping out of the current function call.
This method can only be called if there is an AeroScript program loaded on this task and it is paused.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskMotionControl">
<summary>
A class to control the motion on a task on an Automation1 controller (enable/disable retrace mode, enable/disable feedhold state, set MFO, etc.).
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskMotionControl.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskMotionControl.RetraceOn">
<summary>
Enables retrace mode for the running AeroScript program on this task. When you enable retrace mode, the controller executes motion and
motion-synchronized functions in reverse order, through functions that were previously executed. The controller keeps a history of moves
and synchronized commands that it can use for retrace.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskMotionControl.RetraceOff">
<summary>
Disables retrace mode for the running AeroScript program on this task. When you disable retrace mode, the controller executes forward
through the retrace history until it moves to the program line where retrace was activated.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskMotionControl.FeedholdOn">
<summary>
Enables the feedhold state for the AeroScript program on this task. Enabling the feedhold state causes motion on this task to immediately
decelerate and it stops the execution of programs and immediate commands on this task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskMotionControl.FeedholdOff">
<summary>
Disables the feedhold state on this task. Disabling the feedhold state causes motion on this task to accelerate back up to the speed it
was before feedhold was enabled. Also, the execution of programs and immediate commands on this task continues from where it left off
once the feedhold state is disabled.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskMotionControl.SetMfo(System.Double)">
<summary>
Sets the MFO (manual feedrate override) percentage for this task which scales the programmed feedrate for all coordinated motion and motion
generated by the MoveRapid() AeroScript function. The MFO percentage multiplied by the programmed feedrate determines the true feedrate of the move.
To get the current value of MFO for this task, use Status (<see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Status"/>) to retrieve TaskStatusItem.Mfo.
</summary>
<param name="mfoPercent">The MFO percentage to set.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskProgramControl">
<summary>
A class to control AeroScript programs on a task on an Automation1 controller (load, start, stop, etc.).
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.#ctor(System.Int32,Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.ICompiler)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Run(System.String)">
<summary>
Runs the specified controller file as an AeroScript program on this task. If the controller file is an AeroScript source file then the file will first be compiled.
Running a program will automatically load the program and begin program execution on this task. This method
waits for the program to load and start but it does not wait for the program to complete.
</summary>
<remarks>
The AeroScript program must exist as a controller file on the Automation1 controller (see <see cref="P:Aerotech.Automation1.DotNet.Controller.Files"/>).
AeroScript libraries cannot be run on a task, the controller file must be an AeroScript program (either a source program file or a compiled program file).
</remarks>
<param name="controllerFileName">The controller file that is the AeroScript program to run on this task (source program file or compiled program file).</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Run(Aerotech.Automation1.DotNet.CompiledAeroScript)">
<summary>
Runs a compiled AeroScript program on this task.
Running a program will automatically load the program and begin program execution on this task. This method
waits for the program to load and start but it does not wait for the program to complete.
To compile an AeroScript program source file, see <see cref="P:Aerotech.Automation1.DotNet.Controller.Compiler"/>.
</summary>
<remarks>
AeroScript libraries cannot be run on a task, <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> must be a compiled AeroScript program.
</remarks>
<param name="compiledAeroScript">The compiled AeroScript program to run on this task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Load(System.String)">
<summary>
Loads the specified controller file as an AeroScript program on this task. If the controller file is an AeroScript source file then the file will first be compiled.
Loading does not start the program, you must call <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Start"/> to begin program execution on this task.
</summary>
<remarks>
The AeroScript program must exist as a controller file on the Automation1 controller (see <see cref="P:Aerotech.Automation1.DotNet.Controller.Files"/>).
AeroScript libraries cannot be loaded on a task, the controller file must be an AeroScript program (either a source program file or a compiled program file).
</remarks>
<param name="controllerFileName">The controller file that is the AeroScript program to load on this task (source program file or compiled program file).</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Load(Aerotech.Automation1.DotNet.CompiledAeroScript)">
<summary>
Loads a compiled AeroScript program on this task.
Loading does not start the program, you must call <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Start"/> to begin program execution on this task.
To compile a program see <see cref="P:Aerotech.Automation1.DotNet.Controller.Compiler"/>.
</summary>
<remarks>
AeroScript libraries cannot be loaded on a task, <see cref="T:Aerotech.Automation1.DotNet.CompiledAeroScript"/> must be a compiled AeroScript program.
</remarks>
<param name="compiledAeroScript">The compiled AeroScript program to load on this task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Start">
<summary>
Starts or resumes the currently loaded AeroScript program on this task, beginning program execution. A program must be loaded on to
this task to be able to start or resume it. To load a program, call <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Load(System.String)"/>. This method waits for the loaded program to start
but it does not wait for the program to complete.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Stop">
<summary>
Stops the currently running AeroScript program on this task, terminating program execution. This method will wait indefinitely for the loaded program to stop.
After a program is stopped it is unloaded from the task. This method will also end a command queue running on this task.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Stop(System.Int32)">
<summary>
Stops the currently running AeroScript program on this task, terminating program execution. This method will wait for the specified amount of time for the loaded program to stop.
After a program is stopped it is unloaded from the task. This method will also end a command queue running on this task.
</summary>
<param name="millisecondsTimeout">The number of milliseconds to wait to stop the program on this task. If the program takes longer than this amount of time to stop, an exception is thrown.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Pause">
<summary>
Pauses the currently running AeroScript program on this task, suspending program execution. This method will wait indefinitely for the loaded program to pause.
To resume program execution, call <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Start"/>.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Pause(System.Int32)">
<summary>
Pauses the currently running AeroScript program on this task, suspending program execution. This method will wait for the specified amount of time for the loaded program to pause.
To resume program execution, call <see cref="M:Aerotech.Automation1.DotNet.ControllerTaskProgramControl.Start"/>.
</summary>
<param name="millisecondsTimeout">The number of milliseconds to wait to pause the program on this task. If the program takes longer than this amount of time to pause, an exception is thrown.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskStatus">
<summary>
Represents the status of a controller task on an Automation1 controller. Instances of this class represent a moment
in time for a task.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Tasks"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskStatus.#ctor(Aerotech.Automation1.DotNet.TaskState,System.Double,Aerotech.Automation1.DotNet.TaskMode,System.String,System.String,Aerotech.Automation1.DotNet.ErrorInformation,Aerotech.Automation1.DotNet.ErrorInformation)">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskStatus.TaskState">
<summary>
Gets the state of execution for the task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskStatus.ManualFeedrateOverride">
<summary>
Gets the value for manual feedrate override (MFO) on the task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskStatus.TaskMode">
<summary>
Gets the value of the task mode on the task.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskStatus.AeroScriptSourceFileName">
<summary>
Gets the name of the AeroScript source file for the program that is loaded or running on the task, or null if there is no program loaded or if there is no source file.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskStatus.CompiledAeroScriptFileName">
<summary>
Gets the name of the compiled AeroScript file for the program that is loaded or running on the task, or null if there is no program loaded.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskStatus.Error">
<summary>
Gets the error on the task, if any. This will be null if there is no error.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerTaskStatus.Warning">
<summary>
Gets the warning on the task, if any. This will be null if there is no warning.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerUnits">
<summary>
Represents the distance and time units associated with values being returned by an Automation1 controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerUnits.#ctor(Aerotech.Automation1.DotNet.ControllerDistanceUnit,Aerotech.Automation1.DotNet.ControllerTimeUnit)">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.ControllerUnits"/> object.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerUnits.#ctor(Aerotech.Automation1.DotNet.TaskMode)">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.ControllerUnits"/> object based on a <see cref="T:Aerotech.Automation1.DotNet.TaskMode"/>.
If the task mode doesn't specify the distance units as secondary, the distance unit defaults to primary units.
If the task mode doesn't specify the time unit as minutes, the time unit defaults to seconds.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerUnits.#ctor(Aerotech.Automation1.DotNet.ControllerUnits)">
<summary>
Creates a <see cref="T:Aerotech.Automation1.DotNet.ControllerUnits"/> object with the same distance and time units as <paramref name="units"/>.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerUnits.Distance">
<summary>
Gets distance units.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerUnits.Time">
<summary>
Gets time units.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerUnits.ConvertPoints(Aerotech.Automation1.DotNet.DerivativeLevel,Aerotech.Automation1.DotNet.ControllerUnits,Aerotech.Automation1.DotNet.ControllerUnits,System.Double,System.Double,System.Double[])">
<summary>
Converts the points passed in from their current units to a different set of units.
</summary>
<param name="derivativeLevel">The derivative level of the units. This determines how the "time" unit of the points are converted.</param>
<param name="currentUnits">The current units of <paramref name="points"/>.</param>
<param name="newUnits">The new units to convert <paramref name="points"/> to.</param>
<param name="baseUnitsToSecondaryUnits">The conversion rate to convert "base" units to secondary units. This should be specified as the number of secondary units in a base unit.</param>
<param name="baseUnitsToCountUnits">The conversion rate to convert "base" units to counts. This should be specified as the number of counts in a base unit.</param>
<param name="points">The data to convert to the new units.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerUnits.GetUnitsAsString(Aerotech.Automation1.DotNet.DerivativeLevel,Aerotech.Automation1.DotNet.ControllerUnits,System.String,System.String,System.String)">
<summary>
Generates a string in the form "distance/time^power" based on the units passed in.
</summary>
<param name="derivativeLevel">The derivative level of the units. This determines what the power of the time unit is.</param>
<param name="units">The units to convert to a string. This ultimately determines what is used as "distance" and "time" in the string format.</param>
<param name="primaryUnitsString">The string to use as "distance" if and only if primary units are being used.</param>
<param name="secondaryUnitsString">The string to use as "distance" if and only if secondary units are being used.</param>
<param name="countUnitsString">The string to use as "distance" if and only if count units are being used.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.DerivativeLevel">
<summary>
Represents the derivative level of some physical quantity (position, velocity, acceleration, jerk).
</summary>
<remarks>The values of each option in this enumeration represent the true derivative level.</remarks>
</member>
<member name="F:Aerotech.Automation1.DotNet.DerivativeLevel.None">
<summary>
Represents that the number has no derivative level.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DerivativeLevel.Position">
<summary>
Represents the derivative level of a number that represents position.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DerivativeLevel.Velocity">
<summary>
Represents the derivative level of a number that represents velocity.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DerivativeLevel.Acceleration">
<summary>
Represents the derivative level of a number that represents acceleration.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.DerivativeLevel.Jerk">
<summary>
Represents the derivative level of a number that represents jerk.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerDistanceUnit">
<summary>
Represents distance units that the Automation1 controller understands. How the Automation1 controller
understands secondary units can be modified by updating the SecondaryUnitsScaleFactor and SecondaryUnitsName
system parameters. How the Automation1 controller understands counts can be modified by updating the CountsPerUnit
axis parameter.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerDistanceUnit.Primary">
<summary>
Represents the default units that the Automation1 controller uses. All values from data collection and
status are provided as primary units.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerDistanceUnit.Secondary">
<summary>
Represents an additional set of units that the Automation1 controller understands.
To change how the Automation1 understands secondary units, modify the SecondaryUnitsScaleFactor
and SecondaryUnitsName system parameters.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerDistanceUnit.Counts">
<summary>
Represents counts as understood by the Automation1 controller. To change
how the Automation1 understands counts, modify the CountsPerUnit axis parameter.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTimeUnit">
<summary>
Represents time units that an Automation1 controller understands.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerTimeUnit.Seconds">
<summary>
Represents the default units that the Automation1 controller uses. All values from data collection
and status are provided by the Automation1 controller in seconds.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerTimeUnit.Minutes">
<summary>
Represents minutes.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerTimeUnit.Milliseconds">
<summary>
Represents milliseconds.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.ControllerTimeUnit.Microseconds">
<summary>
Represents microseconds.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerUnitsParameters">
<summary>
Represents all controller parameters required to know how to convert a status item or a data signal from one set of units to another set of units.
See <see cref="T:Aerotech.Automation1.DotNet.AxisParameterForUnits"/> and <see cref="T:Aerotech.Automation1.DotNet.SystemParametersForUnits"/> for a list of parameters used to convert status items and data signals.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerUnitsParameters.#ctor(Aerotech.Automation1.DotNet.AxisParametersForUnits,Aerotech.Automation1.DotNet.SystemParametersForUnits)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.ControllerUnitsParameters"/> object.
</summary>
<param name="axisParameters">The axis parameters required to know how to convert a status item or data signal from one set of units to another set of units.</param>
<param name="systemParameters">The system parameters required to know how to convert a status item or data signal from one set of units to another set of units.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerUnitsParameters.Axes">
<summary>
Gets the axis parameters required to know how to convert the units of status items and data signals.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerUnitsParameters.System">
<summary>
Gets the system parameters required to know how to convert the units of status items and data signals.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisParametersForUnits">
<summary>
Represents all axis parameters required to know how to convert a status item or a data signal from one set of units to another set of units.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisParametersForUnits.#ctor(System.Collections.Generic.IEnumerable{Aerotech.Automation1.DotNet.AxisParameterForUnits})">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.AxisParametersForUnits"/> object.
</summary>
<param name="axisParameters">The list of axis parameters used to know how to convert the units of a status item or data signal.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParametersForUnits.Item(System.Int32)">
<summary>
Returns the <see cref="T:Aerotech.Automation1.DotNet.AxisParameterForUnits"/> for the specified axis index. The <see cref="T:Aerotech.Automation1.DotNet.AxisParametersForUnits"/> contains all axis parameters
required to know how to convert units for the specified axis.
</summary>
<param name="axisIndex">The axis the parameters are associated with.</param>
<returns>Returns teh <see cref="T:Aerotech.Automation1.DotNet.AxisParametersForUnits"/> for the specified axis index.</returns>
</member>
<member name="T:Aerotech.Automation1.DotNet.SystemParametersForUnits">
<summary>
Represents all system parameters required to know how to convert a status item or a data signal from one set of units to another set of units.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.SystemParametersForUnits.#ctor(System.Double,System.String)">
<summary>
Constructs a new <see cref="T:Aerotech.Automation1.DotNet.SystemParametersForUnits"/> object.
</summary>
<param name="secondaryScaleFactor">The scale factor used to convert from and to secondary units.</param>
<param name="secondaryUnitsName">The name of the secondary units.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParametersForUnits.SecondaryScaleFactor">
<summary>
Gets the scale factor used to convert from and to secondary units.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.SystemParametersForUnits.SecondaryUnitsName">
<summary>
Gets the name of the secondary units.
</summary>
<remarks>This property may or may not be empty. See <see cref="M:Aerotech.Automation1.DotNet.RequestHelper.GetControllerUnitsParameters(Aerotech.Automation1.Communication.Requester,System.Int32,System.Boolean)"/> for more information.</remarks>
</member>
<member name="T:Aerotech.Automation1.DotNet.AxisParameterForUnits">
<summary>
Represents all axis parameters required to know how to convert a status item or data signal from one set of units to another set of units.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.AxisParameterForUnits.#ctor(System.Int32,System.Double,System.Int32,System.Int32,System.String)">
<summary>
Creates a new <see cref="T:Aerotech.Automation1.DotNet.AxisParameterForUnits"/> object.
</summary>
<param name="axisIndex">The axis index that these controller parameters are associated with.</param>
<param name="countsPerUnit">The scale factor used to convert from primary units to counts.</param>
<param name="reverseMotionDirection">The programming direction of the axis.</param>
<param name="axisType">The type of axis (dominant or dependent).</param>
<param name="unitsName">The name of the primary units.</param>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterForUnits.AxisIndex">
<summary>
Gets the axis index that these controller parameters are associated with.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterForUnits.CountsPerUnit">
<summary>
Gets the scale factor used to convert from primary units to counts.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterForUnits.ReverseMotionDirection">
<summary>
The programming direction of the axis.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterForUnits.AxisType">
<summary>
Gets the type of axis (dominant or dependent).
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.AxisParameterForUnits.UnitsName">
<summary>
Gets the name of the primary units.
</summary>
<remarks>This property may or may not be empty. See <see cref="M:Aerotech.Automation1.DotNet.RequestHelper.GetControllerUnitsParameters(Aerotech.Automation1.Communication.Requester,System.Int32,System.Boolean)"/> for more information.</remarks>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerGlobalVariables">
<summary>
A class to get and set controller global variables on an Automation1 controller. The controller has a set of global variable arrays for each of the three data types:
AeroScript integer values ($iglobal in AeroScript), AeroScript real values ($rglobal in AeroScript), and AeroScript string values ($sglobal in AeroScript).
These controller global variables are accessible from every task on the controller and from every API. These variables can be used to communicate data between
tasks or between the controller and a custom application. The controller parameters <see cref="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalIntegers"/>,
<see cref="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalReals"/>, and <see cref="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalStrings"/> specify the total number of elements in each respective global variable array.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.#ctor(Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetInteger(System.Int32)">
<summary>
Returns the value of an integer controller global variable ($iglobal in AeroScript), at the specified global integer array index.
The value is returned as an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="globalIntegerIndex">The global integer array index to return the value of.</param>
<returns>The value of an integer controller global variable (which is a 64-bit long integer).</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetIntegers(System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of integer controller global variables ($iglobal in AeroScript), starting at the specified global integer array index.
The values are returned as AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="startingGlobalIntegerIndex">The global integer array index that starts the segment of global variables to get.</param>
<param name="numberOfVariables">The number of global variables to get, starting from <paramref name="startingGlobalIntegerIndex"/>.</param>
<returns>An array of values for the segment of integer controller global variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetIntegers(System.Int32,System.Int64[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of integer controller global variables ($iglobal in AeroScript), starting at the specified global integer array index and with the specified number of variables to get.
The values are returned as AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="startingGlobalIntegerIndex">The global integer array index that starts the segment of global variables to get.</param>
<param name="arrayToPopulate">The array to store the global variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the global variable values.</param>
<param name="numberOfVariables">The number of global variables to get, starting from <paramref name="startingGlobalIntegerIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetInteger(System.Int32,System.Int64)">
<summary>
Sets the value of an integer controller global variable ($iglobal in AeroScript), at the specified global integer array index.
The value to set is an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="globalIntegerIndex">The global integer array index to set the value of.</param>
<param name="integerValue">The AeroScript integer value (which is a 64-bit long integer) to set on the controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetIntegers(System.Int32,System.Int64[])">
<summary>
Sets a contiguous segment of integer controller global variables ($iglobal in AeroScript), starting at the specified global integer array index.
The values to set are AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="startingGlobalIntegerIndex">The global integer array index that starts the segment of global variables to set.</param>
<param name="integerValues">The array of AeroScript integer values (which are 64-bit long integers) to set on the controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetIntegers(System.Int32,System.Int64[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of integer controller global variables ($iglobal in AeroScript), starting at the specified global integer array index and with the specified number of variables to set.
The values to set are AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="startingGlobalIntegerIndex">The global integer array index that starts the segment of global variables to set.</param>
<param name="integerValues">The source array of AeroScript integer values (which are 64-bit long integers) to set on the controller.</param>
<param name="integerValuesOffset">The zero-based offset in <paramref name="integerValues"/> at which to begin setting the global variable values.</param>
<param name="numberOfVariables">The number of global variables to set, starting from <paramref name="startingGlobalIntegerIndex"/> and <paramref name="integerValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetReal(System.Int32)">
<summary>
Returns the value of a real controller global variable ($rglobal in AeroScript), at the specified global real array index.
The value is returned as an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="globalRealIndex">The global real array index to return the value of.</param>
<returns>The value of a real controller global variable.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetReals(System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of real controller global variables ($rglobal in AeroScript), starting at the specified global real array index.
The values are returned as AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="startingGlobalRealIndex">The global real array index that starts the segment of global variables to get.</param>
<param name="numberOfVariables">The number of global variables to get, starting from <paramref name="startingGlobalRealIndex"/>.</param>
<returns>An array of values for the segment of real controller global variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetReals(System.Int32,System.Double[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of real controller global variables ($rglobal in AeroScript), starting at the specified global real array index and with the specified number of variables to get.
The values are returned as AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="startingGlobalRealIndex">The global real array index that starts the segment of global variables to get.</param>
<param name="arrayToPopulate">The array to store the global variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the global variable values.</param>
<param name="numberOfVariables">The number of global variables to get, starting from <paramref name="startingGlobalRealIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetReal(System.Int32,System.Double)">
<summary>
Sets the value of a real controller global variable ($rglobal in AeroScript), at the specified global real array index.
The value to set is an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="globalRealIndex">The global real array index to set the value of.</param>
<param name="realValue">The AeroScript real value (which is a double precision floating point number) to set on the controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetReals(System.Int32,System.Double[])">
<summary>
Sets a contiguous segment of real controller global variables ($rglobal in AeroScript), starting at the specified global real array index.
The values to set are AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="startingGlobalRealIndex">The global real array index that starts the segment of global variables to set.</param>
<param name="realValues">The array of AeroScript real values (which are double precision floating point numbers) to set on the controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetReals(System.Int32,System.Double[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of real controller global variables ($rglobal in AeroScript), starting at the specified global real array index and with the specified number of variables to set.
The values to set are AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="startingGlobalRealIndex">The global real array index that starts the segment of global variables to set.</param>
<param name="realValues">The source array of AeroScript real values (which are double precision floating point numbers) to set on the controller.</param>
<param name="realValuesOffset">The zero-based offset in <paramref name="realValues"/> at which to begin setting the global variable values.</param>
<param name="numberOfVariables">The number of global variables to set, starting from <paramref name="startingGlobalRealIndex"/> and <paramref name="realValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetString(System.Int32)">
<summary>
Returns the value of a string controller global variable ($sglobal in AeroScript), at the specified global string array index.
</summary>
<param name="globalStringIndex">The global string array index to return the value of.</param>
<returns>The value of a string controller global variable.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetStrings(System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of string controller global variables ($sglobal in AeroScript), starting at the specified global string array index.
</summary>
<param name="startingGlobalStringIndex">The global string array index that starts the segment of global variables to get.</param>
<param name="numberOfVariables">The number of global variables to get, starting from <paramref name="startingGlobalStringIndex"/>.</param>
<returns>An array of values for the segment of string controller global variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.GetStrings(System.Int32,System.String[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of string controller global variables ($sglobal in AeroScript), starting at the specified global string array index and with the specified number of variables to get.
</summary>
<param name="startingGlobalStringIndex">The global string array index that starts the segment of global variables to get.</param>
<param name="arrayToPopulate">The array to store the global variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the global variable values.</param>
<param name="numberOfVariables">The number of global variables to get, starting from <paramref name="startingGlobalStringIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetString(System.Int32,System.String)">
<summary>
Sets the value of a string controller global variable ($sglobal in AeroScript), at the specified global string array index.
Each string global variable has a capacity of 255 characters.
</summary>
<param name="globalStringIndex">The global string array index to set the value of.</param>
<param name="stringValue">The AeroScript string value to set on the controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetStrings(System.Int32,System.String[])">
<summary>
Sets a contiguous segment of string controller global variables ($sglobal in AeroScript), starting at the specified global string array index.
Each string global variable has a capacity of 255 characters.
</summary>
<param name="startingGlobalStringIndex">The global string array index that starts the segment of global variables to set.</param>
<param name="stringValues">The array of AeroScript string values to set on the controller.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerGlobalVariables.SetStrings(System.Int32,System.String[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of string controller global variables ($sglobal in AeroScript), starting at the specified global string array index and with the specified number of variables to set.
Each string global variable has a capacity of 255 characters.
</summary>
<param name="startingGlobalStringIndex">The global string array index that starts the segment of global variables to set.</param>
<param name="stringValues">The source array of AeroScript string values (which is a double precision floating point number) to set on the controller.</param>
<param name="stringValuesOffset">The zero-based offset in <paramref name="stringValues"/> at which to begin setting the global variable values.</param>
<param name="numberOfVariables">The number of global variables to set, starting from <paramref name="startingGlobalStringIndex"/> and <paramref name="stringValuesOffset"/>.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerTaskVariables">
<summary>
A class to get and set task variables on a task on an Automation1 controller. Each task on the controller has a set of task variable arrays for each of the three data types:
AeroScript integer values ($itask in AeroScript), AeroScript real values ($rtask in AeroScript), and AeroScript string values ($stask in AeroScript).
These task variables are accessible from every API and can be used to communicate data between iterations of a program running on the same task. They are not accessible from other tasks.
The controller parameters <see cref="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskIntegers"/>, <see cref="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskReals"/>, and <see cref="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskStrings"/>
specify the total number of elements in each respective task variable array.
Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance and then through the <see cref="P:Aerotech.Automation1.DotNet.ControllerRuntime.Variables"/> property.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet})">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetInteger(System.Int32,System.Int32)">
<summary>
Returns the value of an integer task variable ($itask in AeroScript), at the specified task integer array index.
The value is returned as an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="taskIndex">The index of the task to get the integer task variable from.</param>
<param name="taskIntegerArrayIndex">The task integer array index to return the value of.</param>
<returns>The value of an integer task variable (which is a 64-bit long integer).</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetInteger(System.String,System.Int32)">
<summary>
Returns the value of an integer task variable ($itask in AeroScript), at the specified task integer array index.
The value is returned as an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="taskName">The name of the task to get the integer task variable from.</param>
<param name="taskIntegerArrayIndex">The task integer array index to return the value of.</param>
<returns>The value of an integer task variable (which is a 64-bit long integer).</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetIntegers(System.Int32,System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index.
The values are returned as AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskIndex">The index of the task to get the integer task variables from.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to get.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskIntegerArrayStartingIndex"/>.</param>
<returns>An array of values for the segment of integer task variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetIntegers(System.String,System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index.
The values are returned as AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskName">The name of the task to get the integer task variables from.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to get.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskIntegerArrayStartingIndex"/>.</param>
<returns>An array of values for the segment of integer task variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetIntegers(System.Int32,System.Int32,System.Int64[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index and with the specified number of variables to get.
The values are returned as AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskIndex">The index of the task to get the integer task variables from.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to get.</param>
<param name="arrayToPopulate">The array to store the task variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the task variable values.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskIntegerArrayStartingIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetIntegers(System.String,System.Int32,System.Int64[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index and with the specified number of variables to get.
The values are returned as AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskName">The name of the task to get the integer task variables from.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to get.</param>
<param name="arrayToPopulate">The array to store the task variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the task variable values.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskIntegerArrayStartingIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetInteger(System.Int32,System.Int32,System.Int64)">
<summary>
Sets the value of an integer task variable ($itask in AeroScript), at the specified task integer array index.
The value to set is an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="taskIndex">The index of the task on which to set the integer task variable.</param>
<param name="taskIntegerArrayIndex">The task integer array index to set the value of.</param>
<param name="integerValue">The AeroScript integer value (which is a 64-bit long integer) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetInteger(System.String,System.Int32,System.Int64)">
<summary>
Sets the value of an integer task variable ($itask in AeroScript), at the specified task integer array index.
The value to set is an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="taskName">The name of the task on which to set the integer task variable.</param>
<param name="taskIntegerArrayIndex">The task integer array index to set the value of.</param>
<param name="integerValue">The AeroScript integer value (which is a 64-bit long integer) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetIntegers(System.Int32,System.Int32,System.Int64[])">
<summary>
Sets a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index.
The values to set are AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskIndex">The index of the task on which to set the integer task variables.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to set.</param>
<param name="integerValues">The array of AeroScript integer values (which are 64-bit long integers) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetIntegers(System.String,System.Int32,System.Int64[])">
<summary>
Sets a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index.
The values to set are AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskName">The name of the task on which to set the integer task variables.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to set.</param>
<param name="integerValues">The array of AeroScript integer values (which are 64-bit long integers) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetIntegers(System.Int32,System.Int32,System.Int64[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index and with the specified number of variables to set.
The values to set are AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskIndex">The index of the task on which to set the integer task variables.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to set.</param>
<param name="integerValues">The source array of AeroScript integer values (which are 64-bit long integers) to set on the task.</param>
<param name="integerValuesOffset">The zero-based offset in <paramref name="integerValues"/> at which to begin setting the task variable values.</param>
<param name="numberOfVariables">The number of task variables to set, starting from <paramref name="taskIntegerArrayStartingIndex"/> and <paramref name="integerValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetIntegers(System.String,System.Int32,System.Int64[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of integer task variables ($itask in AeroScript), starting at the specified task integer array index and with the specified number of variables to set.
The values to set are AeroScript integer values (which are 64-bit long integers).
</summary>
<param name="taskName">The name of the task on which to set the integer task variables.</param>
<param name="taskIntegerArrayStartingIndex">The task integer array index that starts the segment of task variables to set.</param>
<param name="integerValues">The source array of AeroScript integer values (which are 64-bit long integers) to set on the task.</param>
<param name="integerValuesOffset">The zero-based offset in <paramref name="integerValues"/> at which to begin setting the task variable values.</param>
<param name="numberOfVariables">The number of task variables to set, starting from <paramref name="taskIntegerArrayStartingIndex"/> and <paramref name="integerValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetReal(System.Int32,System.Int32)">
<summary>
Returns the value of a real task variable ($rtask in AeroScript), at the specified task real array index.
The value is returned as an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="taskIndex">The index of the task to get the real task variable from.</param>
<param name="taskRealArrayIndex">The task real array index to return the value of.</param>
<returns>The value of a real task variable.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetReal(System.String,System.Int32)">
<summary>
Returns the value of a real task variable ($rtask in AeroScript), at the specified task real array index.
The value is returned as an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="taskName">The name of the task to get the real task variable from.</param>
<param name="taskRealArrayIndex">The task real array index to return the value of.</param>
<returns>The value of a real task variable.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetReals(System.Int32,System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index.
The values are returned as AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskIndex">The index of the task to get the real task variables from.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to get.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskRealArrayStartingIndex"/>.</param>
<returns>An array of values for the segment of real task variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetReals(System.String,System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index.
The values are returned as AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskName">The name of the task to get the real task variables from.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to get.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskRealArrayStartingIndex"/>.</param>
<returns>An array of values for the segment of real task variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetReals(System.Int32,System.Int32,System.Double[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index and with the specified number of variables to get.
The values are returned as AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskIndex">The index of the task to get the real task variables from.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to get.</param>
<param name="arrayToPopulate">The array to store the task variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the task variable values.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskRealArrayStartingIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetReals(System.String,System.Int32,System.Double[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index and with the specified number of variables to get.
The values are returned as AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskName">The name of the task to get the real task variables from.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to get.</param>
<param name="arrayToPopulate">The array to store the task variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the task variable values.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskRealArrayStartingIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetReal(System.Int32,System.Int32,System.Double)">
<summary>
Sets the value of a real task variable ($rtask in AeroScript), at the specified task real array index.
The value to set is an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="taskIndex">The index of the task on which to set the real task variable.</param>
<param name="taskRealArrayIndex">The task real array index to set the value of.</param>
<param name="realValue">The AeroScript real value (which is a double precision floating point number) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetReal(System.String,System.Int32,System.Double)">
<summary>
Sets the value of a real task variable ($rtask in AeroScript), at the specified task real array index.
The value to set is an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="taskName">The index of the task on which to set the real task variable.</param>
<param name="taskRealArrayIndex">The task real array index to set the value of.</param>
<param name="realValue">The AeroScript real value (which is a double precision floating point number) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetReals(System.Int32,System.Int32,System.Double[])">
<summary>
Sets a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index.
The values to set are AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskIndex">The index of the task on which to set the real task variables.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to set.</param>
<param name="realValues">The array of AeroScript real values (which are double precision floating point numbers) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetReals(System.String,System.Int32,System.Double[])">
<summary>
Sets a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index.
The values to set are AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskName">The name of the task on which to set the real task variables.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to set.</param>
<param name="realValues">The array of AeroScript real values (which are double precision floating point numbers) to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetReals(System.Int32,System.Int32,System.Double[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index and with the specified number of variables to set.
The values to set are AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskIndex">The index of the task on which to set the real task variables.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to set.</param>
<param name="realValues">The source array of AeroScript real values (which are double precision floating point numbers) to set on the task.</param>
<param name="realValuesOffset">The zero-based offset in <paramref name="realValues"/> at which to begin setting the task variable values.</param>
<param name="numberOfVariables">The number of task variables to set, starting from <paramref name="taskRealArrayStartingIndex"/> and <paramref name="realValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetReals(System.String,System.Int32,System.Double[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of real task variables ($rtask in AeroScript), starting at the specified task real array index and with the specified number of variables to set.
The values to set are AeroScript real values (which are double precision floating point numbers).
</summary>
<param name="taskName">The name of the task on which to set the real task variables.</param>
<param name="taskRealArrayStartingIndex">The task real array index that starts the segment of task variables to set.</param>
<param name="realValues">The source array of AeroScript real values (which are double precision floating point numbers) to set on the task.</param>
<param name="realValuesOffset">The zero-based offset in <paramref name="realValues"/> at which to begin setting the task variable values.</param>
<param name="numberOfVariables">The number of task variables to set, starting from <paramref name="taskRealArrayStartingIndex"/> and <paramref name="realValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetString(System.Int32,System.Int32)">
<summary>
Returns the value of a string task variable ($stask in AeroScript), at the specified task string array index.
</summary>
<param name="taskIndex">The index of the task to get the string task variables from.</param>
<param name="taskStringArrayIndex">The task string array index to return the value of.</param>
<returns>The value of a string task variable.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetString(System.String,System.Int32)">
<summary>
Returns the value of a string task variable ($stask in AeroScript), at the specified task string array index.
</summary>
<param name="taskName">The name of the task to get the string task variables from.</param>
<param name="taskStringArrayIndex">The task string array index to return the value of.</param>
<returns>The value of a string task variable.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetStrings(System.Int32,System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index.
</summary>
<param name="taskIndex">The index of the task to get the string task variables from.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to get.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskStringArrayStartingIndex"/>.</param>
<returns>An array of values for the segment of string task variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetStrings(System.String,System.Int32,System.Int32)">
<summary>
Returns an array of values for a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index.
</summary>
<param name="taskName">The name of the task to get the string task variables from.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to get.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskStringArrayStartingIndex"/>.</param>
<returns>An array of values for the segment of string task variables.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetStrings(System.Int32,System.Int32,System.String[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index and with the specified number of variables to get.
</summary>
<param name="taskIndex">The index of the task to get the string task variables from.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to get.</param>
<param name="arrayToPopulate">The array to store the task variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the task variable values.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskStringArrayStartingIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.GetStrings(System.String,System.Int32,System.String[],System.Int32,System.Int32)">
<summary>
Populates an array of values for a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index and with the specified number of variables to get.
</summary>
<param name="taskName">The name of the task to get the string task variables from.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to get.</param>
<param name="arrayToPopulate">The array to store the task variables.</param>
<param name="arrayToPopulateOffset">The zero-based offset in <paramref name="arrayToPopulate"/> at which to begin storing the task variable values.</param>
<param name="numberOfVariables">The number of task variables to get, starting from <paramref name="taskStringArrayStartingIndex"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetString(System.Int32,System.Int32,System.String)">
<summary>
Sets the value of a string task variable ($stask in AeroScript), at the specified task string array index.
Each string task variable has a capacity of 255 characters.
</summary>
<param name="taskIndex">The index of the task on which to set the string task variable.</param>
<param name="taskStringArrayIndex">The task string array index to set the value of.</param>
<param name="stringValue">The AeroScript string value to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetString(System.String,System.Int32,System.String)">
<summary>
Sets the value of a string task variable ($stask in AeroScript), at the specified task string array index.
Each string task variable has a capacity of 255 characters.
</summary>
<param name="taskName">The name of the task on which to set the string task variable.</param>
<param name="taskStringArrayIndex">The task string array index to set the value of.</param>
<param name="stringValue">The AeroScript string value to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetStrings(System.Int32,System.Int32,System.String[])">
<summary>
Sets a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index.
Each string task variable has a capacity of 255 characters.
</summary>
<param name="taskIndex">The index of the task on which to set the string task variables.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to set.</param>
<param name="stringValues">The array of AeroScript string values to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetStrings(System.String,System.Int32,System.String[])">
<summary>
Sets a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index.
Each string task variable has a capacity of 255 characters.
</summary>
<param name="taskName">The name of the task on which to set the string task variables.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to set.</param>
<param name="stringValues">The array of AeroScript string values to set on the task.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetStrings(System.Int32,System.Int32,System.String[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index and with the specified number of variables to set.
Each string task variable has a capacity of 255 characters.
</summary>
<param name="taskIndex">The index of the task on which to set the string task variables.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to set.</param>
<param name="stringValues">The source array of AeroScript string values (which is a double precision floating point number) to set on the task.</param>
<param name="stringValuesOffset">The zero-based offset in <paramref name="stringValues"/> at which to begin setting the task variable values.</param>
<param name="numberOfVariables">The number of task variables to set, starting from <paramref name="taskStringArrayStartingIndex"/> and <paramref name="stringValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.SetStrings(System.String,System.Int32,System.String[],System.Int32,System.Int32)">
<summary>
Sets a contiguous segment of string task variables ($stask in AeroScript), starting at the specified task string array index and with the specified number of variables to set.
Each string task variable has a capacity of 255 characters.
</summary>
<param name="taskName">The name of the task on which to set the string task variables.</param>
<param name="taskStringArrayStartingIndex">The task string array index that starts the segment of task variables to set.</param>
<param name="stringValues">The source array of AeroScript string values (which is a double precision floating point number) to set on the task.</param>
<param name="stringValuesOffset">The zero-based offset in <paramref name="stringValues"/> at which to begin setting the task variable values.</param>
<param name="numberOfVariables">The number of task variables to set, starting from <paramref name="taskStringArrayStartingIndex"/> and <paramref name="stringValuesOffset"/>.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerTaskVariables.assertIsNotReservedOrInvalidTask(System.Int32)">
<summary>
Throws an exception if the task provided is equal to the reserved task or if the task provided is not a valid task.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.ControllerVariables">
<summary>
A class to get and set controller variables on an Automation1 controller. Access an instance of this class through a <see cref="T:Aerotech.Automation1.DotNet.Controller"/> object instance.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.ControllerVariables.#ctor(Aerotech.Automation1.Communication.Requester,Aerotech.Automation1.DotNet.RefreshableLazy{Aerotech.Automation1.DotNet.TaskSet})">
<summary>
Constructor.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerVariables.Global">
<summary>
Gets a way to get and set controller global variables on the Automation1 controller. The controller has a set of global variable arrays for each of the three data types:
AeroScript integer values ($iglobal in AeroScript), AeroScript real values ($rglobal in AeroScript), and AeroScript string values ($sglobal in AeroScript).
These controller global variables are accessible from every task on the controller and from every API. These variables can be used to communicate data between
tasks or between the controller and a custom application. The controller parameters <see cref="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalIntegers"/>,
<see cref="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalReals"/>, and <see cref="F:Aerotech.Automation1.DotNet.SystemParameterId.GlobalStrings"/> specify the total number of elements in each respective global variable array.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerVariables.IndustrialEthernet">
<summary>
Gets a way to get and set Industrial Ethernet variables on the Automation1 controller.
</summary>
</member>
<member name="P:Aerotech.Automation1.DotNet.ControllerVariables.Task">
<summary>
Gets a way to get and set task variables on a task on the Automation1 controller. Each task on the controller has a set of task variable arrays for each of the three data types:
AeroScript integer values ($itask in AeroScript), AeroScript real values ($rtask in AeroScript), and AeroScript string values ($stask in AeroScript).
These task variables are accessible from every API and can be used to communicate data between iterations of a program running on the same task. They are not accessible from other tasks.
The controller parameters <see cref="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskIntegers"/>, <see cref="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskReals"/>, and <see cref="F:Aerotech.Automation1.DotNet.TaskParameterId.TaskStrings"/> specify the
total number of elements in each respective task variable array.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.IndustrialEthernetVariables">
<summary>
A class to get and set Industrial Ethernet mappings on the controller.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.#ctor(Aerotech.Automation1.Communication.Requester)">
<summary>
Constructor.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.GetInteger(System.String)">
<summary>
Gets the value of an Industrial Ethernet mapping.
The value is returned as an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="industrialEthernetMappingName">The name of the Industrial Ethernet mapping to get the value of.</param>
<returns>An integer value of an Industrial Ethernet mapping.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.GetInteger(System.String,System.Int32)">
<summary>
Gets the value of an Industrial Ethernet mapping array at the specified index.
The value is returned as an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to get a value from.</param>
<param name="industrialEthernetMappingArrayIndex">The index of the Industrial Ethernet mapping array to get the value of.</param>
<returns>An integer value of an Industrial Ethernet mapping.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.GetIntegers(System.String,System.Int32,System.Int32)">
<summary>
Gets an array of values for a segment of an Industrial Ethernet mapping array, starting
at the specified index. The values are returned as an array of AeroScript integer
values (which are 64-bit long integers).
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to get the values from.</param>
<param name="startingIndex">The index the Industrial Ethernet mapping array that starts the segment of values to get.</param>
<param name="numberOfVariables">The length of the segment to get.</param>
<returns>An array of integer values for a segment of an Industrial Ethernet mapping array.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.GetReal(System.String)">
<summary>
Gets the value of an Industrial Ethernet mapping.
The value is returned as an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="industrialEthernetMappingName">The name of the Industrial Ethernet mapping to get the value of.</param>
<returns>A real value of an Industrial Ethernet mapping.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.GetReal(System.String,System.Int32)">
<summary>
Gets the value of an Industrial Ethernet mapping array at the specified index.
The value is returned as an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to get a value from.</param>
<param name="industrialEthernetMappingArrayIndex">The index of the Industrial Ethernet mapping array to get the value of.</param>
<returns>A real value of an Industrial Ethernet mapping.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.GetReals(System.String,System.Int32,System.Int32)">
<summary>
Gets an array of values for a segment of an Industrial Ethernet mapping array, starting
at the specified index. The values are returned as an array of AeroScript real
values (which are double precision floating point numbers).
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to get the values from.</param>
<param name="startingIndex">The index the Industrial Ethernet mapping array that starts the segment of values to get.</param>
<param name="numberOfVariables">The length of the segment to get.</param>
<returns>An array of real for a segment of an Industrial Ethernet mapping array.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.SetInteger(System.String,System.Int64)">
<summary>
Sets the value of an Industrial Ethernet mapping as an AeroScript integer value (which is a 64-bit long integer).
</summary>
<param name="industrialEthernetMappingName">The name of the Industrial Ethernet mapping to set the value of.</param>
<param name="value">The value to set for the Industrial Ethernet mapping.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.SetInteger(System.String,System.Int32,System.Int64)">
<summary>
Sets the value of an Industrial Ethernet mapping array at the specified index as an AeroScript integer
value (which is a 64-bit long integer).
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to set the value of.</param>
<param name="industrialEthernetMappingArrayIndex">The index in the Industrial Ethernet mapping array to set the value of.</param>
<param name="value">The value to set for the Industrial Ethernet mapping array at the specified index.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.SetIntegers(System.String,System.Int32,System.Int64[])">
<summary>
Sets the values of a segment of an Industrial Ethernet mapping array, as AeroScript integer
values (which are 64-bit long integers), starting at the specified index.
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to set the segment of values.</param>
<param name="startingIndex">The index in the Industrial Ethernet mapping array that starts the segment of values to set.</param>
<param name="values">The values to set for the segment of the Industrial Ethernet mapping array.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.SetReal(System.String,System.Double)">
<summary>
Sets the value of an Industrial Ethernet mapping as an AeroScript real value (which is a double precision floating point number).
</summary>
<param name="industrialEthernetMappingName">The name of the Industrial Ethernet mapping to set the value of.</param>
<param name="value">The value to set for the Industrial Ethernet mapping.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.SetReal(System.String,System.Int32,System.Double)">
<summary>
Sets the value of an Industrial Ethernet mapping array at the specified index as an AeroScript real
value (which is a double precision floating point number).
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to set the value of.</param>
<param name="industrialEthernetMappingArrayIndex">The index in the Industrial Ethernet mapping array to set the value of.</param>
<param name="value">The value to set for the Industrial Ethernet mapping array at the specified index.</param>
</member>
<member name="M:Aerotech.Automation1.DotNet.IndustrialEthernetVariables.SetReals(System.String,System.Int32,System.Double[])">
<summary>
Sets the values of a segment of an Industrial Ethernet mapping array, as AeroScript real
values (which are double precision floating point numbers), starting at the specified index.
</summary>
<param name="industrialEthernetMappingArrayName">The name of the Industrial Ethernet mapping array to set the segment of values.</param>
<param name="startingIndex">The index in the Industrial Ethernet mapping array that starts the segment of values to set.</param>
<param name="values">The values to set for the segment of the Industrial Ethernet mapping array.</param>
</member>
<member name="T:Aerotech.Automation1.DotNet.VersionedXmlFile">
<summary>
Represents an XML file that contains all version information required to detect files created in old software versions
and new software versions. This class should be used to create the XML file and it should be used to load the XML
file. If the XML file is directly manipulated, you will find an additional XML schema used store the version information and
to wrap the data elements that are to be versioned. See the implementation of <see cref="M:Aerotech.Automation1.DotNet.VersionedXmlFile.create(System.Version,System.Version,System.Xml.Linq.XElement[])"/> for details
of that schema.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.LoadXmlFromBytes(System.Byte[],System.Version,System.Version,System.Xml.Linq.XElement@)">
<summary>
Loads the XML file from the bytes provided and verifies that the version information in that XML file is correct.
If for any reason, the XML document cannot be verified an exception is thrown indicating a serious compatibility
problem. If the file was created by an old or new software version, an exception will _not_ be thrown. Instead
that will be indicated by the return value.
</summary>
<param name="xmlFileBytes">The XML file to load and verify.</param>
<param name="supportedSchemaVersion">
The schema version that this version of the software understands. This is compared to the schema version that the file
specifies to make sure this version of the software can parse it properly.
</param>
<param name="oldestCompatibleSoftwareVersion">
The oldest compatible software version that this version of the software understands. This is compared to the version
that the file was written in to make sure it is compatible.
</param>
<param name="rootDataElement">
A <see cref="T:System.Xml.Linq.XElement"/> that contains all relevant data elements. This is returned instead of the entire <see cref="T:System.Xml.Linq.XDocument"/>
to prevent direct manipulation of the file and to ensure that the file schema is maintained by <see cref="T:Aerotech.Automation1.DotNet.VersionedXmlFile"/>.
</param>
<returns>
Returns whether or not the XML document was created in an older software version, a new software version, or the current software version.
See <see cref="T:Aerotech.Automation1.DotNet.VersionDetection"/> for details on what each possible value means.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.LoadXmlFromBytes(System.Byte[],System.Version,System.Version,System.Version@,System.Version@,System.Xml.Linq.XElement@)">
<summary>
Loads the XML file from the bytes provided and verifies that the version information in that XML file is correct.
If for any reason, the XML document cannot be verified an exception is thrown indicating a serious compatibility
problem. If the file was created by an old or new software version, an exception will _not_ be thrown. Instead
that will be indicated by the return value.
</summary>
<param name="xmlFileBytes">The XML file to load and verify.</param>
<param name="supportedSchemaVersion">
The schema version that this version of the software understands. This is compared to the schema version that the file
specifies to make sure this version of the software can parse it properly.
</param>
<param name="oldestCompatibleSoftwareVersion">
The oldest compatible software version that this version of the software understands. This is compared to the version
that the file was written in to make sure it is compatible.
</param>
<param name="fileSoftwareVersion">
The software version of the configuration file. This was set when the configuration was created or last saved and may be different
than the current software version.
</param>
<param name="fileOldestCompatibleSoftwareVersion">
The oldest compatible software version of the configuration file. This was set when the configuration was created or last saved
and may be different than the current oldest compatible software version.
</param>
<param name="rootDataElement">
A <see cref="T:System.Xml.Linq.XElement"/> that contains all relevant data elements. This is returned instead of the entire <see cref="T:System.Xml.Linq.XDocument"/>
to prevent direct manipulation of the file and to ensure that the file schema is maintained by <see cref="T:Aerotech.Automation1.DotNet.VersionedXmlFile"/>.
</param>
<returns>
Returns whether or not the XML document was created in an older software version, a new software version, or the current software version.
See <see cref="T:Aerotech.Automation1.DotNet.VersionDetection"/> for details on what each possible value means.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.CreateAsBytes(System.Version,System.Version,System.Xml.Linq.XElement[])">
<summary>
Creates an XML file with version information and embeds the <paramref name="oldestCompatibleSoftwareVersion"/> and
<paramref name="dataElements"/> into that file. The XML file that is created has its own XML schema so that validating
version information can be done the same way across all files that contain version information.
</summary>
<param name="schemaVersion">The schema version that this version of the software understands and writes.</param>
<param name="oldestCompatibleSoftwareVersion">
The oldest compatible software version that this version of the software understands. This is compared to the version
that the file was written in to make sure it is compatible.
</param>
<param name="dataElements">The XML elements that the version information pertains to.</param>
<returns>Returns the bytes that represent the newly created XML file.</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.verifyXmlVersion(System.Xml.Linq.XDocument,System.Version,System.Version,System.Version@,System.Version@,System.Xml.Linq.XElement@)">
<summary>
Verifies that the XML document has the correct schema and detects if document is an older or newer version.
If for any reason, the XML document cannot be verified an exception is thrown indicating a serious compatibility
problem. If the file was created by an old or new software version, an exception will _not_ be thrown. Instead
that will be indicated by the return value.
</summary>
<param name="xDocument">
The XML file to verify the schema and version information of.
</param>
<param name="supportedSchemaVersion">
The schema version that this version of the software understands. This is compared to the schema version that the file
specifies to make sure this version of the software can parse it properly.
</param>
<param name="oldestCompatibleSoftwareVersion">
The oldest compatible software version that the current version of the software can understand. This is compared to
the version that the file was written in to make sure it is compatible.
</param>
<param name="fileSoftwareVersion">
The software version of the configuration file. This was set when the configuration was created or last saved and may be different
than the current software version.
</param>
<param name="fileOldestCompatibleSoftwareVersion">
The oldest compatible software version of the configuration file. This was set when the configuration was created or last saved
and may be different than the current oldest compatible software version.
</param>
<param name="rootDataElement">
An <see cref="T:System.Xml.Linq.XElement"/> that contains all relevant data elements. This is returned instead of the entire <see cref="T:System.Xml.Linq.XDocument"/>
to prevent direct manipulation of the file and to ensure that the file schema is maintained by <see cref="T:Aerotech.Automation1.DotNet.VersionedXmlFile"/>.
</param>
<returns>
Returns whether or not the XML document was created in an older software version, a new software version, or the current software version.
See <see cref="T:Aerotech.Automation1.DotNet.VersionDetection"/> for details on what each possible value means.
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.create(System.Version,System.Version,System.Xml.Linq.XElement[])">
<summary>
Creates an XML file that has all version information that is required to accurately detect files that have been created by old and new versions.
This includes the current software version, the oldest compatible software version, and a series of XML elements that represent the data that the
version information pertains to.
</summary>
<param name="schemaVersion">The schema version that this version of the software understands and writes.</param>
<param name="oldestCompatibleSoftwareVersion">The oldest compatible software version that the current version of the software can understand.</param>
<param name="dataChildElements">The data elements that the version information pertains to. These elements will be embedded in the XML file.</param>
<returns>
Returns a <see cref="T:System.Xml.Linq.XDocument"/> with the relevant version information and the data elements.3
</returns>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.requireAttributeText(System.Xml.Linq.XElement,System.String)">
<summary>
Enforces that the parent element has an attribute with the specified name and that it also contains text. If the parent element
doesn't have the attribute or the attribute doesn't have any text an exception is thrown.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.requireAttribute(System.Xml.Linq.XElement,System.String)">
<summary>
Enforces that the parent element has an attribute with the specified name. If it doesn't an exception is thrown.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.requireElementText(System.Xml.Linq.XElement,System.String)">
<summary>
Enforces that the parent element has a child element with the specified name and that it also contains text. If the parent element doesn't have the
child element or the child element doesn't have any text an exception is thrown.
</summary>
</member>
<member name="M:Aerotech.Automation1.DotNet.VersionedXmlFile.requireElement(System.Xml.Linq.XElement,System.String)">
<summary>
Enforces that the parent element has a child element with the specified name. If it doesn't an exception is thrown.
</summary>
</member>
<member name="T:Aerotech.Automation1.DotNet.VersionDetection">
<summary>
Represents what version of the software was used to create the file relative to the current
version of the software.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.VersionDetection.OlderVersionDetected">
<summary>
The file was created in an older version of the software and may or may not be compatible
with the current version of the software.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.VersionDetection.NewerVersionDetected">
<summary>
The file was created in a newer version of the software and may or may not be compatible
with the current version of the software.
</summary>
</member>
<member name="F:Aerotech.Automation1.DotNet.VersionDetection.ExpectedVersion">
<summary>
The file was created this version of the software. It will be compatible.
</summary>
</member>
</members>
</doc>