Insert data in string form into the buffer at a given position.
Source position: syssbh.inc line 91
public function TUnicodeStringBuilder.Insert( |
Index: Integer; |
const AValue: Boolean |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: Byte |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: WideChar |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: Currency |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: Double |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: SmallInt |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: LongInt |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: array of WideChar |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: Int64 |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: TObject |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: ShortInt |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: Single |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: UnicodeString |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: Word |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: Cardinal |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: UInt64 |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: UnicodeString; |
const aRepeatCount: Integer |
):TUnicodeStringBuilder; |
Index: Integer; |
const AValue: array of WideChar; |
startIndex: Integer; |
SBCharCount: Integer |
Insert in its various overloaded forms will insert the aValue argument into the buffer at position Index (0-based), after converting it to a string value if necessary:
|
Append the result of a Format. |
|
|
Append a string followed by a newline. |
|
|
Append data in string form to the buffer. |
|
|
Remove data from the string. |
|
|
Replace a range of characters. |