API:System.SysUtils.TStringBuilder.Insert

From RAD Studio API Documentation
Jump to: navigation, search

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

Properties

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

Description

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