NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Currency.Floor

Rounds a Currency toward negative infinity to the nearest integer value.

[Visual Basic]
Public Shared Function Floor( _
   ByVal c As Currency _
) As Currency
[C#]
public static Currency Floor(
   Currency c
);
[C++]
public: static Currency Floor(
   Currency c
);
[JScript]
public static function Floor(
   c : Currency
) : Currency;

Parameters

c
The Currency to truncate.

Return Value

The Currency argument rounded towards negative infinity, to the next lowest whole number value.

See Also

Currency Structure | Currency Members | System Namespace