Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Tile.Update

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function Update(xml: string): void;
public void Update(string xml);
public function Update(medium: string, wide: string, large: string, text: string): void;
public void Update(string medium, string wide, string large, string text);

Parámetros

xml A string containing XML document for new tile look.
medium An uri to 150x150 image, shown on medium tile.
wide An uri to a 310x150 image to be shown on a wide tile (if such issupported).
large An uri to a 310x310 image to be shown on a large tile (if such is supported).
text A text to shown on a tile.

Descripción

Send a notification for tile (update tiles look).

A tile is updated by providing and XML document with new look. The second version is a convenience method to make tile display image, text or both. At least one of medium and text argumets must be provided, and these two are used to determine whether this is image-only, text-only or image-and-text tile. Uris ms-appx:/// and ms-appdata://local can be used to access local application resources. If uri points to network resource, internet access capability must be enabled in applications manifest.