SmartPascal
PAnsiString
Type
Pointer to an AnsiString value System unit
  type PAnsiString = ^AnsiString;
Description
The PAnsiString type is a pointer to a AnsiString value.
 
Since AnsiString is itself a pointer, PAnsiString is not of much use.
Related commands
AnsiString A data type that holds a string of AnsiChars
String A data type that holds a string of characters
 
Example code :

Show full unit code