Click or drag to resize

StepScript Class

A script that can be started, stopped and resumed from defined step points.
Inheritance Hierarchy

Namespace:  RRAutoLib.CTC
Assembly:  RRAutoLib (in RRAutoLib.dll) Version: 4.0.8678.28884
Syntax
<SerializableAttribute>
Public NotInheritable Class StepScript
	Inherits CtcObjectBase
	Implements IScript, ISupportsScriptEvents

The StepScript type exposes the following members.

Constructors
  NameDescription
Public methodStepScript
Initializes a new instance of the StepScript class
Top
Properties
  NameDescription
Public propertyCancelToken
Gets the cancellation token of the running script that can be used to cancel individial script methods.
Public propertyDefaultName
Gets the default identifiable name assigned to this CTC object.
(Inherited from CtcObjectBase.)
Public propertyEnabled
Gets or sets whether the script will be compiled and be made available for operation.
Public propertyID
Gets the CTC object's globaly unique static identifier.
(Inherited from CtcObjectBase.)
Public propertyIsDeleted
Gets an indication whether this CTC object has been flaged for deletion by DeleteSelf.
(Inherited from CtcObjectBase.)
Public propertyLoop
Gets or sets whether the script should restart from the beginning when it reaches the end.
Public propertyName
Gets or sets the identifiable name assigned to this CTC object.
(Inherited from CtcObjectBase.)
Public propertyParent
Gets the parent list that contains this CTC object.
(Inherited from CtcObjectBase.)
Public propertyPersistedTag
Gets or sets the binary representation of an arbitrary object that provides additional data to be stored with the layout data.
(Inherited from CtcObjectBase.)
Public propertyRunning
Gets a value indicating whether the step script is currently running.
Public propertyScript
Gets or sets the user script used to initialize the execution steps.
Public propertyScriptEventBinder
Public propertyStepNames
Gets a list of previously defined step names.
Public propertyStepPos
Gets the step position at which execution is or will occur next.
Public propertyStepPosName
Gets the step name associated with the StepPos index.
Public propertyTag
Gets or sets an arbitrary object that provides additional data but is disposed between sessions.
(Inherited from CtcObjectBase.)
Top
Methods
Remarks
Use this type of script object to sequentially execute a list of steps. Examples: running a locomotive, scripting actions of a craine, etc.
See Also