Compartir a través de


Propiedad Window.ShowRulers (Visio)

Determina si se muestran reglas en la ventana de dibujo. Lectura y escritura.

Sintaxis

expresión. ShowRulers

Expresión Variable que representa un objeto Window .

Valor devuelto

Entero

Comentarios

Establecer la propiedad ShowRulers equivale a seleccionar Reglas en el grupo Mostrar u ocultar de la ficha Ver.

Ejemplo:

Esta macro de Microsoft Visual Basic para Aplicaciones (VBA) muestra cómo utilizar la propiedad ShowRulers para mostrar u ocultar las reglas.

 
Public Sub ShowRulers_Example() 
 
 'Check whether the active window is a drawing window. 
 If ActiveWindow.Type = visDrawing Then 
 
 'Switch the rulers on or off. 
 ActiveWindow.ShowRulers = Not ActiveWindow.ShowRulers 
 
 Else 
 
 'Tell the user why you are not switching the rulers. 
 MsgBox "Active window is not a drawing window.", _ 
 vbOKOnly, "Show/Hide Rulers" 
 
 End If 
 
End Sub

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.