API:System.RegularExpressions.TGroup
Delphi
TGroup = record
private
FIndex: Integer;
FLength: Integer;
FSuccess: Boolean;
FValue: TBytes;
constructor Create(const AValue: string; AIndex, ALength: Integer; ASuccess: Boolean);
function GetIndex: Integer;
function GetLength: Integer;
function GetValue: string;
public
property Index: Integer read GetIndex;
property Length: Integer read GetLength;
property Success: Boolean read FSuccess;
property Value: string read GetValue;
end;
C++
struct DECLSPEC_DRECORD TGroup
{
private:
int FIndex;
int FLength;
bool FSuccess;
#ifndef _WIN64
System::DynamicArray<System::Byte> FValue;
#else /* _WIN64 */
System::TArray__1<System::Byte> FValue;
#endif /* _WIN64 */
protected:
__fastcall TGroup(const System::UnicodeString AValue, int AIndex, int ALength, bool ASuccess);
private:
int __fastcall GetIndex(void);
int __fastcall GetLength(void);
System::UnicodeString __fastcall GetValue(void);
public:
__property int Index = {read=GetIndex};
__property int Length = {read=GetLength};
__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!