Click or drag to resize
DispatchCoronaLuaEventResultReturnedValue Property
Provides the value returned by the Corona event handler/listener.

Namespace: CoronaLabs.Corona.WinRT
Assembly: CoronaLabs (in CoronaLabs.dll) Version: 255.255.255.255
Syntax
public ICoronaBoxedData ReturnedValue { get; }

Property Value

Type: ICoronaBoxedData

The value returned by the Corona event handler/listener.

This is a boxed value compatible with Lua which is typically of type bool, double, string, list, or table.

Will be null if the Corona event handler did not return a value. Will also be null if the Corona runtime failed to dispatch the event, which is typically the case if the runtime hasn't been started yet or has been terminated.

Remarks
This property should be ignored if property HasFailed returns true.
See Also