Innerfuse Pascal Script
Back to Libraries
ifpstrans.pas
procedure RegisterTransLibrary(p: TIfPasScript);
Registers the transform library. This can be used for stream operations to put other types than strings in it.
This will register:
function TransformExtendedToString(E: Extended): string;
function TransformDoubleToString(E: Double): string;
function TransformSingleToString(E: Single): string;
function TransformIntegertoString(E: Longint): string;
function TransformSmallInttoString(E: SmallInt): string;
function TransformBytetoString(E: Byte): string;
function TransformShortIntToString(E: ShortInt): string;
function TransformWordtoString(E: Word): string;
function TransformStringToExtended(E: String): Extended;
function TransformStringToDouble(E: String): Double;
function TransformStringToSingle(E: String): Single;
function TransformStringToInteger(E: String): Longint;
function TransformStringToSmallInt(E: String): SmallInt;
function TransformStringToByte(E: String): Byte;
function TransformStringToShortInt(E: String): ShortInt;
function TransformStringToWord(E: String): word;
Copyright (c) 2001 by Carlo Kok
last update: 24-11-01