Types Delphi

type PWideString = ^WideString;


Description
The PWideString type is a pointer to an WideString value.

Since WideString is itself a pointer, PWideString is not of much use.

Related commands
AnsiString A data type that holds a string of AnsiChars
Dec Decrement an ordinal variable
Inc Increment an ordinal variable
PAnsiString Pointer to an AnsiString value
PString Pointer to a String value
PWideChar Pointer to a WideChar
String A data type that holds a string of characters
WideString A data type that holds a string of WideChars