Skip to main content
A newer version of this page is available. .

Units.MulDiv(Int32, Single, Int32) Method

Multiplies two integer values and then divides the result by another integer 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.v18.2.Core.dll

Declaration

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

Parameters

Name Type Description
value Int32

An integer that is the multiplicand.

mul Single

An integer that is the multiplier.

div Int32

An integer 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