Table of Contents

Class UpdateResult

Namespace
RoboDk.API.Model
Assembly
RoboDkApi.dll
public class UpdateResult
Inheritance
UpdateResult
Inherited Members

Constructors

UpdateResult(double, double, double, double, string)

public UpdateResult(double instructions, double time, double distance, double ratio, string message = "")

Parameters

instructions double
time double
distance double
ratio double
message string

Properties

Message

A readable message as a string

public string Message { get; }

Property Value

string

ProgramDistance

Estimated distance that the robot TCP will travel (in mm)

public double ProgramDistance { get; }

Property Value

double

ProgramTime

Estimated cycle time (in seconds)

public double ProgramTime { get; }

Property Value

double

ValidInstructions

The number of valid instructions

public double ValidInstructions { get; }

Property Value

double

ValidRatio

This is a ratio from [0.00 to 1.00] showing if the path can be fully completed without any problems (1.0 means the path 100% feasible). ValidRatio is less then 1.0 if there were problems along the path.

public double ValidRatio { get; }

Property Value

double