System.Threading.TParallel.TLoopResult

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TLoopResult = record
    private
      FCompleted: Boolean;
      FLowestBreakIteration: Variant;
    public
      property Completed: Boolean read FCompleted;
      property LowestBreakIteration: Variant read FLowestBreakIteration;
    end;

C++

struct DECLSPEC_DRECORD TLoopResult
{
private:
    bool FCompleted;
    System::Variant FLowestBreakIteration;
public:
    __property bool Completed = {read=FCompleted};
    __property System::Variant LowestBreakIteration = {read=FLowestBreakIteration};
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Threading.pas
System.Threading.hpp
System.Threading TParallel

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!