System.SysUtils.TStringBuilder.Insert

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

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

プロパティ

種類 可視性 ソース ユニット
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TStringBuilder

説明

オブジェクト パラメータの文字列表現を、指定した Index 位置に挿入します。

Insert を使用して、オブジェクト パラメータの文字列表現を、指定した Index 位置に挿入します。

パラメータ count を使用するオーバーロードでは、count によって count に指定された回数オブジェクトを挿入するという方法を指定します。

startIndexcharCount は、Value TCharArray をこのインスタンスの文字配列に挿入する方法を指定します。

関連項目