Fix Function

Returns the integer value of a numeric expression by removing the fractional part of the number.

தொடரமைப்பு:

Fix (Expression)

Return value:

Double

அளவுருக்கள்:

Expression: Numeric expression that you want to return the integer value for.

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:

Sub ExampleFix

    Print Fix(3.14159) ' returns 3.

    Print Fix(0) ' returns 0.

    Print Fix(-3.14159) ' returns -3.

End Sub