Share

acdbCanonicalToSystemRange

C++

bool acdbCanonicalToSystemRange(
    int eUnits, 
    const AcString& strIn, 
    AcString& strOut
);

File

aced.h

Description

This function converts the canonical value represented by strIn to a value within the system range. It returns the converted value, expressed as a string in the units specified by eUnits, in strOut. See AcDbDynBlockReferenceProperty::UnitsType for possible values of eUnits.

Returns true if successful, or if strIn is an empty string.

Parameters

Parameters Description
eUnits Input value indicating type of unit
strIn Input string representation of canonical value to convert
strOut Output converted value, expressed in the specified units as a string

Was this information helpful?