Share

acdbSystemRangeToCanonical

C++

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

File

aced.h

Description

This function converts the system range value represented by strIn to a canonical value. strIn should be expressed in the units specified by eUnits This function returns the converted value expressed as a string 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 input unit
strIn Input value to convert expressed in the specified units as a string
strOut Output converted value as a string

Was this information helpful?