DelphiBasics
PString
Type
Pointer to a String value System unit
type PString = ^String;
Description
The PString type is a pointer to an String value.
 
Since String is itself a pointer, PString is not of much use.
Related commands
AnsiStringA data type that holds a string of AnsiChars
PAnsiStringPointer to an AnsiString value
PWideStringPointer to a WideString value
StringA data type that holds a string of characters
WideStringA data type that holds a string of WideChars
 Download this web site as a Windows program.




 
Example code :

Show full unit code
  
 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page