Функция _WinAPI_FloatToInt

 ↑  ←  Описание функции


_WinAPI_FloatToInt

Returns a 4 byte float as an integer value

#include <WinAPI.au3>
_WinAPI_FloatToInt($nFloat)

Параметры

$nFloat Float value

Возвращаемое значение

Returns an 4 byte float value as an integer

Пример

#include <WinAPI.au3>

_Main()

Func _Main()
    Local $float, $text, $INT
    $float = 10.55
    $INT = _WinAPI_FloatToInt($float)
    $text = "The float " & $float & " is converted to the Integer " & $INT & " (Hex = " & Hex($INT) & ")"
    MsgBox(4096, "_WinAPI_FloatToInt Example Results", $text)
EndFunc   ;==>_Main