TileUpdater.Update | update method
Applies a change in content or appearance to the tile.
Syntax
tileUpdater.update(notification);
Parameters
- notification
-
Type: TileNotification
The object that supplies the new XML definition for the tile's content.
Examples
The following example shows Update used to send a notification to the app's tile.
function sendTileTextNotification() { var Notifications = Windows.UI.Notifications; // Get an XML DOM version of a specific template by using getTemplateContent. var tileXml = Notifications.TileUpdateManager.getTemplateContent(Notifications.TileTemplateType.tileWideText03); // You will need to look at the template documentation to know how many text fields a particular template has. // Get the text attribute for this template and fill it in. var tileAttributes = tileXml.getElementsByTagName("text"); tileAttributes[0].appendChild(tileXml.createTextNode("Hello World!")); // Create the notification from the XML. var tileNotification = new Notifications.TileNotification(tileXml); // Send the notification to the calling app's tile. Notifications.TileUpdateManager.createTileUpdaterForApplication().update(tileNotification); }
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
See also
- TileUpdater
- App tiles and badges sample
- Quickstart: Sending a tile update
- Tile and tile notification overview
- The tile template catalog
- Guidelines and checklist for tiles
- How to schedule a tile notification
- How to use the notification queue with local notifications
- How to set up periodic notifications for tiles
- Tiles XML schema
Build date: 12/4/2012
