ibihelpme_DeliveryTypeChangedEvent
Signature | ibihelpme_DeliveryTypeChangedEvent: (type: string) => void |
---|---|
Description | Is called when the set transmission mode changes |
Available from API version | 1.0.0 |
Parameter
Name | Type | Description |
---|---|---|
type | string | Includes the new transmission mode. Possible values: see Transmission mode |
Return value
No return value
Example
JS
window.ibihelpme_DeliveryTypeChangedEvent = function(type)
{
if(type === 'MAPI')
setupMapiUi();
else
setupDefaultUi();
}