_Application3.Version 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'InfoPath.
public:
property System::String ^ Version { System::String ^ get(); };
public string Version { get; }
member this.Version : string
Public ReadOnly Property Version As String
Valeur de propriété
Implémente
Exemples
Dans l’exemple suivant, la propriété Version de l’objet Application est utilisée pour afficher le numéro de version de l’application dans une boîte de message :
thisXDocument.UI.Alert("Application version: " +
thisApplication.<span class="label">Version</span>);
thisXDocument.UI.Alert("Application version: " & _
thisApplication.<span class="label">Version</span>)
Dans l’exemple suivant, la propriété Version de l’objet Application est utilisée pour afficher le numéro de version de l’application dans une boîte de message :
thisXDocument.UI.Alert("Application version: " +
thisApplication.<span class="label">Version</span>);
thisXDocument.UI.Alert("Application version: " & _
thisApplication.<span class="label">Version</span>)
Remarques
Le numéro de version d'une application ne comprend pas son nom. Pour obtenir le nom d’une application, utilisez la Name propriété
Pour obtenir le numéro de version d’un modèle de formulaire, utilisez la Version propriété .
Important : ce membre est accessible sans restrictions.