Function Reference

_WinAPI_FloatToInt

4バイトfloatを整数値として返します。

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

 

パラメータ

$nFloat float値

 

返し値

4バイトfloat値の整数表現が返されます。

 

注意

なし。

 

関連

 


#AutoIt3Wrapper_Au3Check_Parameters= -d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <WinAPI.au3>

Opt('MustDeclareVars', 1)

_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(0, "_WinAPI_FloatToInt Example Results", $text)
EndFunc   ;==>_Main