Application.Name, propriété
Obtient le nom de l'application InfoPath.
Espace de noms : Microsoft.Office.InfoPath
Assembly : Microsoft.Office.InfoPath (dans Microsoft.Office.InfoPath.dll)
Syntaxe
'Déclaration
Public MustOverride ReadOnly Property Name As String
Get
'Utilisation
Dim instance As Application
Dim value As String
value = instance.Name
public abstract string Name { get; }
Valeur de la propriété
Type : System.String
Nom de l'application InfoPath.
Remarques
Le nom de l'application ne comprend pas le numéro de version. Pour connaître le numéro de version d'une application, utilisez la propriété Version.
Ce membre est accessible sans restrictions.
Ce type ou ce membre est accessible à partir du code exécuté dans les formulaires ouverts dans Microsoft InfoPath Filler ou dans un navigateur Web.
Exemples
Dans l'exemple ci-dessous, la propriété Name est utilisée pour afficher le nom de l'application.
string appName = this.Application.Name;
MessageBox.Show(appName);
Dim appName As String = Me.Application.Name
MessageBox.Show(appName)