|
@@ -115,11 +115,12 @@
|
|
Function Replace(const OldValue, NewValue: SBRawString; StartIndex: Integer; Count: Integer): TGenericStringBuilder;
|
|
Function Replace(const OldValue, NewValue: SBRawString; StartIndex: Integer; Count: Integer): TGenericStringBuilder;
|
|
{$IFDEF UNICODERTL}
|
|
{$IFDEF UNICODERTL}
|
|
Function ToString: RTLString; override;
|
|
Function ToString: RTLString; override;
|
|
|
|
+ function ToString(UpdateCapacity: Boolean): RTLString; overload;
|
|
{$ELSE}
|
|
{$ELSE}
|
|
Function ToString: SBString; {$IFNDEF SBUNICODE} override; {$ELSE} reintroduce; {$ENDIF}
|
|
Function ToString: SBString; {$IFNDEF SBUNICODE} override; {$ELSE} reintroduce; {$ENDIF}
|
|
|
|
+ function ToString(UpdateCapacity: Boolean): SBString; overload;
|
|
{$ENDIF}
|
|
{$ENDIF}
|
|
Function ToString(aStartIndex: Integer; aLength: Integer): SBString; reintroduce;
|
|
Function ToString(aStartIndex: Integer; aLength: Integer): SBString; reintroduce;
|
|
-
|
|
|
|
property Chars[index: Integer]: SBChar read GetC write SetC; default;
|
|
property Chars[index: Integer]: SBChar read GetC write SetC; default;
|
|
property Length: Integer read GetLength write SetLength;
|
|
property Length: Integer read GetLength write SetLength;
|
|
property Capacity: Integer read GetCapacity write SetCapacity;
|
|
property Capacity: Integer read GetCapacity write SetCapacity;
|