PathEngine home previous: Interface iProgressCallBacknext: Interface iConnectionTestCallBack
Contents, API Reference, Interfaces, iProgressCallBack, updateProgress

iProgressCallBack::updateProgress()

Description

This method is called by PathEngine to report progress.

Syntax

void updateProgress(const char* operationDescription, float percent);

Parameters

operationDescription A C string with a human readable text description of the sub-process currently underway. This string is only valid for the duration of this method, and must not be retained after the method returns.
percent The amount of progress within the current sub-process, as a fractional percentage between 0 and 1. 0 corresponds to no progress, 1 corresponds to sub-process completion.

C# Mapping

void updateProgress(string operationDescription, float percent);

Java Mapping

void updateProgress(String operationDescription, float percent);

Documentation for PathEngine release 6.04 - Copyright © 2002-2024 PathEnginenext: Interface iConnectionTestCallBack