System.SysUtils.TStringBuilder.Insert

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

function Insert(Index: Integer; const Value: Boolean): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Byte): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Char): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Currency): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Double): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Smallint): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Integer): TStringBuilder; overload;
function Insert(Index: Integer; const Value: TCharArray): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Int64): TStringBuilder; overload;
function Insert(Index: Integer; const Value: TObject): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Shortint): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Single): TStringBuilder; overload;
function Insert(Index: Integer; const Value: string): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Word): TStringBuilder; overload;
function Insert(Index: Integer; const Value: Cardinal): TStringBuilder; overload;
function Insert(Index: Integer; const Value: UInt64): TStringBuilder; overload;
function Insert(Index: Integer; const Value: string; count: Integer): TStringBuilder; overload;
function Insert(Index: Integer; const Value: TCharArray; startIndex: Integer; charCount: Integer): TStringBuilder; overload;

C++

TStringBuilder* __fastcall Insert(int Index, const bool Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::Byte Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::WideChar Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::Currency Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const double Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const short Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const int Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::DynamicArray<System::WideChar> Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const __int64 Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, System::TObject* const Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::Int8 Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const float Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::UnicodeString Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::Word Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const unsigned Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const unsigned __int64 Value)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::UnicodeString Value, int count)/* overload */;
TStringBuilder* __fastcall Insert(int Index, const System::DynamicArray<System::WideChar> Value, int startIndex, int charCount)/* overload */;

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TStringBuilder

Beschreibung

Fügt eine String-Repräsentation des Objektparameters am angegebenen Index ein.

Mit Insert fügen Sie eine String-Repräsentation des Objektparameters am angegebenen Index ein.

In der überladenen Methode, die den Parameter count verwendet, wird das Objekt count Mal eingefügt.

startIndex und charCount fügen einen Teil-String von Value TCharArray in das Zeichen-Array dieser Instanz ein.

Siehe auch