Description
This enum specifies the action to take when converting a scale factor to a lower-dimensional one.
C#
public enum ScaleFactorReduction { Average, Max, Min, X, Y }
Visual Basic
Public Enum ScaleFactorReduction Average Max Min X Y End Enum
Dynamic-Link Library (DLL)
AdUIMgd.dll
Members
| Members | Description |
|---|---|
| Average | Result is the average of components. |
| Max | Result is the larger of components. |
| Min | Result is the smaller of components. |
| X | Result is the X component. |
| Y | Result is the Y component. |