Home  |  Delphi .net Home  |  System.Single  |  IsNegativeInfinity Method
IsNegativeInfinity  
Method  
Returns true if a a given Single is - infinite in value
Single Structure
System NameSpace
CF1.  Function IsNegativeInfinity ( Value : Double; ) : Boolean; Static;
CF : Methods with this mark are Compact Framework Compatible
Description
If Value is NegativeInfinity then the result is true otherwise false.
 
An infinite value results from a division by zero.
Notes
Static methods are not methods of an object - they are simply class functions or procedures available at any time.
Microsoft MSDN Links
System
System.Single
 
 
A simple example
program Project1;
{$APPTYPE CONSOLE}

var
  value : Single;

begin
  value := -1/0;

  if System.Single.IsNegativeInfinity(value)
  then Console.WriteLine('-1/0 is negative infinite')
  else Console.WriteLine('-1/0 is not negative inifinite');

  Console.ReadLine;
end.
Show full unit code
  -1/0 is negative infinite
 
 
Delphi Programming © Neil Moffatt All rights reserved.  |  Contact the author