Propiedad TextFrame.MarginRight (PowerPoint)
Devuelve o establece la distancia (en puntos) entre el borde derecho del marco de texto y el borde derecho del rectángulo inscrito de la forma que contiene el texto. Lectura y escritura.
Sintaxis
expresión. MarginRight
Expresión Variable que representa un objeto TextFrame .
Valor devuelto
Simple
Ejemplo:
En este ejemplo se agrega un rectángulo a myDocument, se agrega texto al rectángulo y, a continuación, se establecen los márgenes del marco de texto.
Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes.AddShape(msoShapeRectangle, _
0, 0, 250, 140).TextFrame
.TextRange.Text = "Here is some test text"
.MarginBottom = 0
.MarginLeft = 10
.MarginRight = 5
.MarginTop = 20
End With
Consulte también
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.