API:System.RegularExpressions.TGroup

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TGroup = record
  private
    FIndex: Integer;
    FLength: Integer;
    FSuccess: Boolean;
    FValue: string;
    constructor Create(const AValue: string; AIndex, ALength: Integer; ASuccess: Boolean);
    function GetValue: string;
  public
    property Index: Integer read FIndex;
    property Length: Integer read FLength;
    property Success: Boolean read FSuccess;
    property Value: string read GetValue;
  end;

C++

struct DECLSPEC_DRECORD TGroup
{
private:
    int FIndex;
    int FLength;
    bool FSuccess;
    System::UnicodeString FValue;
protected:
    __fastcall TGroup(const System::UnicodeString AValue, int AIndex, int ALength, bool ASuccess);
private:
    System::UnicodeString __fastcall GetValue(void);
public:
    __property int Index = {read=FIndex};
    __property int Length = {read=FLength};
    __property bool Success = {read=FSuccess};
    __property System::UnicodeString Value = {read=GetValue};
    TGroup() {}
};

Properties

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

Description

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