GetDoubleValue/GetDVal

Gets data that is set for the ANYTYPE structure as double

double GetDoubleValue();

double GetDVal();

Parameters
None.

Return Value
Returns the value that is set for the ANYTYPE structure as type double.

Description
Please use GetDoubleValue when newly programming it. To maintain interchangeability, GetDVal has been left.
Converts the value that is set for the ANYTYPE structure to type double and gets it.

Example
    int Sample::SetUnitData(ProcUnit *ptrProcUnit, int dataNo, ANYTYPE *data)
    {
        double value;

        // Get data

        value = data->GetDoubleValue();
    }