API:System.JSON.Types.TJsonRegEx

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

  TJsonRegEx = record
  private
    function GetAsString: String;
    procedure SetAsString(const AValue: String);
  public
    RegEx: String;
    Options: String;
    constructor Create(const ARegEx, AOptions: String);
    property AsString: String read GetAsString write SetAsString;
  end;

C++

struct DECLSPEC_DRECORD TJsonRegEx
{
private:
    System::UnicodeString __fastcall GetAsString();
    void __fastcall SetAsString(const System::UnicodeString AValue);
public:
    System::UnicodeString RegEx;
    System::UnicodeString Options;
    __fastcall TJsonRegEx(const System::UnicodeString ARegEx, const System::UnicodeString AOptions);
    __property System::UnicodeString AsString = {read=GetAsString, write=SetAsString};
    TJsonRegEx() {}
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
System.JSON.Types.pas
System.JSON.Types.hpp
System.JSON.Types System.JSON.Types

説明

このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。