Click or drag to resize

RapidEditorInitData Class

Represents the init data sent to the RAPID editor if a particular module and row shall be launched in the LaunchView method.
Inheritance Hierarchy
SystemObject
  ABB.Robotics.Tps.TafRapidEditorInitData

Namespace:  ABB.Robotics.Tps.Taf
Assembly:  ABB.Robotics.Tps.Taf (in ABB.Robotics.Tps.Taf.dll) Version: 6.5.129.0
Syntax
C#
public class RapidEditorInitData

The RapidEditorInitData type exposes the following members.

Constructors
  NameDescription
Public methodRapidEditorInitData
Constructor for the RapidEditorInitData data
Top
Properties
  NameDescription
Public propertyModuleName
Gets or sets the name of the module to show in the RAPID editor.
Public propertyRow
Gets or sets the row of the module that should be displayed on top of the RAPID editor when it opens.
Public propertyTaskName
Gets or sets the name of the task which the RAPID editor should open.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Examples
The example shows how to launch the RAPID editor at task T_ROB1, module MainModule, row 7.
RapidEditorInitData initData = new RapidEditorInitData("T_ROB1","MainModule",7);
See Also