System.SysUtils.TStringBuilder.Chars

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Chars[index: Integer]: Char read GetChars write SetChars; default;

C++

__property System::WideChar Chars[int index] = {read=GetChars, write=SetChars/*, default*/};

Properties

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

Description

Used to get or set the characters stored in this TStringBuilder instance.

Use Chars to get or set the characters stored in this TStringBuilder instance.

index specifies the position of the character to access.

The value of this property is the character stored at location index.

See Also