IMcSpatial2DCalibConversionFactorX Property
|
|
Get or Put X axis conversion factor
Namespace:
MediaCy.IQL.Calibrations.NonLinear
Assembly:
MediaCy.IQL.Calibrations.NonLinear (in MediaCy.IQL.Calibrations.NonLinear.dll) Version: 10.0.6912.0
SyntaxProperty ConversionFactorX As Double
Get
Set
Property Value
Type:
Double
RemarksConversion factor can only be put while current unit is mcs2uOthre
or an error will be returned.
Conversion factor is the factor for converting current unit to base unit.
The base units are Millimeter for physical space, Nanometer for frequency space,
and Second for time space.
If the factor == 0, the value is invalid. That means conversion to base unit
need to be treated specially (such as wavenumberR->nm);
If > 0, multiply value in current unit by the factor to convert to base unit;
If < 0, divide the factor by value in current unit to convert to base unit;
example:
f is conversion factor, x in current unit, y in base unit.
If f > 0, y = x * f;
If f < 0, y = -f / x; (x != 0)
See Also