Skip to main content

Units.MulDiv(Int32, Int32, Single) Method

Multiplies two integer values and then divides the result by a floating point value. The final result is cast to an integer (rounded to the nearest integer dropping the values after the decimal place).

Namespace: DevExpress.Office.Utils

Assembly: DevExpress.Office.v23.2.Core.dll

NuGet Packages: DevExpress.Office.Core, DevExpress.Win.Navigation

Declaration

public static int MulDiv(
    int value,
    int mul,
    float div
)

Parameters

Name Type Description
value Int32

An integer that is the multiplicand.

mul Int32

An integer that is the multiplier.

div Single

A floating point value that is the number by which the result of the previous multiplication operation is divided.

Returns

Type Description
Int32

An integer that is the final result of the operation.

Remarks

The MulDiv method is commonly used when translating between different screen resolutions.

See Also