System.SysUtils.TStringBuilder.Insert

De RAD Studio API Documentation
Aller à : navigation, rechercher

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 */;

Propriétés

Type Visibilité  Source Unité  Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TStringBuilder

Description

Insère une représentation chaîne du paramètre objet à l'indice fourni.

Utilisez Insert pour insérer une représentation chaîne du paramètre objet à l'indice fourni.

Dans la surcharge qui utilise le paramètre count, count fournit un moyen d'insérer l'objet count fois.

startIndex et charCount fournissent un moyen d'insérer une sous-chaîne du TCharArray Value dans le tableau de caractères de cette instance.

Voir aussi