Class InstructionListJointsResult
Encapsulates the InstructionListJoints() result.
Inherited Members
Namespace:RoboDk.API.Model
Assembly: RoboDkApi.dll
Syntax
public class InstructionListJointsResult
Properties
|Improve this Doc View SourceErrorCode
状态是0 if no problems are found. Otherwise it returns the number of instructions that can be successfully executed. If status is negative it means that one or more targets are not properly defined (missing target item in an instruction).
Declaration
public int ErrorCode { get; set; }
Property Value
Type | Description |
---|---|
int |
ErrorMessage
Human readable error message (if any)
Declaration
public string ErrorMessage { get; set; }
Property Value
Type | Description |
---|---|
string |
JointList
List of joint(axis) positions.
Declaration
public List JointList { get; set; }
Property Value
Type | Description |
---|---|
List<InstructionListJointsResult.JointsResult> |