Application.UsableWidth, propriété
Obtient la largeur d'écran disponible, c'est-à-dire le nombre maximal de points que vous pouvez utiliser pour définir la largeur d'une fenêtre de document InfoPath.
Espace de noms : Microsoft.Office.InfoPath
Assembly : Microsoft.Office.InfoPath (dans Microsoft.Office.InfoPath.dll)
Syntaxe
'Déclaration
Public MustOverride ReadOnly Property UsableWidth As Integer
Get
'Utilisation
Dim instance As Application
Dim value As Integer
value = instance.UsableWidth
public abstract int UsableWidth { get; }
Valeur de la propriété
Type : System.Int32
Largeur d'écran disponible en points.
Remarques
Ce membre est accessible sans restrictions.
Ce type ou ce membre est accessible uniquement à partir du code exécuté dans les formulaires ouverts dans Microsoft InfoPath Filler.
Exemples
Dans l'exemple ci-dessous, la propriété UsableWidth sert à afficher la largeur d'écran disponible maximale exprimée en points.
MessageBox.Show(this.Application.UsableWidth.ToString());
MessageBox.Show(Me.Application.UsableWidth.ToString())