Partager via


Propriété Window.ShowGrid (Visio)

Détermine si une grille est affichée dans une fenêtre. Lecture-écriture.

Syntaxe

expression. ShowGrid

Expression Variable qui représente un objet Window .

Valeur renvoyée

Entier

Remarques

Définir la propriété ShowGrid revient à sélectionner Grille dans le groupe Afficher/masquer de l’onglet Affichage.

Exemple

Cette macro Microsoft Visual Basic pour Applications (VBA) indique comment utiliser la propriété ShowGrid. Pour restaurer la grille après l'exécution de cette macro, définissez la propriété ShowGrid sur True.

 
Public Sub ShowGrid_Example() 
 
 'Check whether active window is a drawing window. 
 If ActiveWindow.Type = visDrawing Then 
 
 'Hide the grid. 
 ActiveWindow.ShowGrid = False 
 
 Else 
 
 'Tell the user why you are not hiding the grid. 
 MsgBox "Active window is not a drawing window.", vbOKOnly, "Show Grid" 
 
 End If 
 
End Sub

Assistance et commentaires

Avez-vous des questions ou des commentaires sur Office VBA ou sur cette documentation ? Consultez la rubrique concernant l’assistance pour Office VBA et l’envoi de commentaires afin d’obtenir des instructions pour recevoir une assistance et envoyer vos commentaires.