VersionUpgradeEvent.DocumentVersion Propriété
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 le numéro de version d’un formulaire Microsoft Office InfoPath.
public:
property System::String ^ DocumentVersion { System::String ^ get(); };
public string DocumentVersion { get; }
member this.DocumentVersion : string
Public ReadOnly Property DocumentVersion As String
Valeur de propriété
Exemples
Dans l’exemple suivant, la propriété DocumentVersion de l’objet VersionUpgradeEventObject est utilisée pour afficher le numéro de version d’un formulaire InfoPath dans une boîte de message :
public void OnVersionUpgrade(VersionUpgradeEvent e)
{
thisXDocument.UI.Alert("The form version: " + e.<span class="label">DocumentVersion</span> +
"\nThe form template version: " + e.SolutionVersion);
e.ReturnStatus = true;
}
Remarques
Cette propriété peut être utilisée uniquement pendant l’événement OnVersionUpgrade .