Pane.View 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.
Renvoie un objet View qui représente l'affichage du volet spécifié.
public:
property Microsoft::Office::Interop::Word::View ^ View { Microsoft::Office::Interop::Word::View ^ get(); };
public Microsoft.Office.Interop.Word.View View { get; }
member this.View : Microsoft.Office.Interop.Word.View
Public ReadOnly Property View As View
Valeur de propriété
Exemples
Cet exemple affiche tous les caractères non imprimables pour les volets associés à la première fenêtre de la collection Windows.
<span class="label">For Each myPane In Windows(1).Panes
myPane.</span>
<span class="label">View</span>
<span class="label">.ShowAll = TrueNext myPane</span>