Date.Today Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la date en vigueur sur le système au format ISO (AAAA-MM-JJ).
public:
System::Object ^ Today();
public object Today ();
abstract member Today : unit -> obj
Public Function Today () As Object
Retours
object qui représente la date en vigueur.
Exemples
Dans l’exemple suivant, la variable currentDate
est définie sur la date système actuelle.
object currentDate = thisXDocument.Util.Date.<span class="label">Today</span>();
thisXDocument.UI.Alert(currentDate.ToString());