ToastTemplateType Enum

Definition

Specifies the template to use in a toast notification.

public enum class ToastTemplateType
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class ToastTemplateType
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum ToastTemplateType
var value = Windows.UI.Notifications.ToastTemplateType.toastImageAndText01
Public Enum ToastTemplateType
Inheritance
ToastTemplateType
Attributes

Windows requirements

Device family
Windows 10 (introduced in 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v1.0)

Fields

ToastImageAndText01 0

A large image and a single string wrapped across three lines of text. ToastImageAndText01 example

ToastImageAndText02 1

A large image, one string of bold text on the first line, one string of regular text wrapped across the second and third lines. ToastImageAndText02 example

ToastImageAndText03 2

A large image, one string of bold text wrapped across the first two lines, one string of regular text on the third line. ToastImageAndText03 example

ToastImageAndText04 3

A large image, one string of bold text on the first line, one string of regular text on the second line, one string of regular text on the third line. ToastImageAndText04 example

ToastText01 4

A single string wrapped across three lines of text. ToastText01 example

ToastText02 5

One string of bold text on the first line, one string of regular text wrapped across the second and third lines. ToastText02 example

ToastText03 6

One string of bold text wrapped across the first and second lines, one string of regular text on the third line. ToastText03 example

ToastText04 7

One string of bold text on the first line, one string of regular text on the second line, one string of regular text on the third line. ToastText04 example

Remarks

You can send any toast template to Windows Phone 8.1, but it will be rendered as a modified version of ToastText02, with no image, two text strings (both on the same line, the first string in bold), and the app's Square 150x150 logo. An example is shown here Example phone toast

Applies to

See also