TileUpdateManager.GetTemplateContent(TileTemplateType) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the XML content of one of the predefined tile templates so that you can customize it for a tile update.
Note
When this method is called on a Windows 8 system, it returns a version 1 template. When this method is called on a Windows 8.1 system, it returns a version 2 template. However, if an app specifies Windows 8 compatibility in its manifest, this method returns a version 1 template.
public:
static XmlDocument ^ GetTemplateContent(TileTemplateType type);
static XmlDocument GetTemplateContent(TileTemplateType const& type);
public static XmlDocument GetTemplateContent(TileTemplateType type);
function getTemplateContent(type)
Public Shared Function GetTemplateContent (type As TileTemplateType) As XmlDocument
Parameters
- type
- TileTemplateType
The name of the template.
Returns
The object that contains the XML.
Examples
The following example shows GetTemplateContent used to retrieve the XML content of a tile template.
var tileTemplate = Windows.UI.Notifications.TileTemplateType.tileWide310x150Text03;
var tileXml = Windows.UI.Notifications.TileUpdateManager.getTemplateContent(tileTemplate);
Remarks
You can use Document Object Model (DOM) manipulation functions to customize the template content for use in a TileNotification update that you will send to the tile through the TileUpdater that you create through the other methods of this class.
See tile schema for an explanation of tile elements and attributes.