Member Junction
    Preparing search index...

    Action that converts values between different units of measurement. Supports length, weight, temperature, volume, area, speed, and time conversions.

    // Convert miles to kilometers
    await runAction({
    ActionName: 'Unit Converter',
    Params: [{
    Name: 'Value',
    Value: 5
    }, {
    Name: 'FromUnit',
    Value: 'miles'
    }, {
    Name: 'ToUnit',
    Value: 'kilometers'
    }]
    });

    // Convert temperature
    await runAction({
    ActionName: 'Unit Converter',
    Params: [{
    Name: 'Value',
    Value: 32
    }, {
    Name: 'FromUnit',
    Value: 'fahrenheit'
    }, {
    Name: 'ToUnit',
    Value: 'celsius'
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods