Propiedad LineFormat.BeginArrowheadStyle (PowerPoint)
Devuelve o establece el estilo de la punta de flecha al comienzo de la línea especificada. Lectura y escritura.
Sintaxis
expresión. BeginArrowheadStyle
Expresión Variable que representa un objeto LineFormat .
Valor devuelto
MsoArrowheadStyle
Comentarios
El valor de la propiedad BeginArrowheadStyle puede ser una de estas constantes MsoArrowheadStyle
msoArrowheadDiamond |
msoArrowheadNone |
msoArrowheadOpen |
msoArrowheadOval |
msoArrowheadStealth |
msoArrowheadStyleMixed |
msoArrowheadTriangle |
Ejemplo:
En este ejemplo se agrega una línea a myDocument. Hay un óvalo corto y estrecho en el extremo inicial de la línea, así como un triángulo largo y ancho en el extremo final.
Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes.AddLine(100, 100, 200, 300).Line
.BeginArrowheadLength = msoArrowheadShort
.BeginArrowheadStyle = msoArrowheadOval
.BeginArrowheadWidth = msoArrowheadNarrow
.EndArrowheadLength = msoArrowheadLong
.EndArrowheadStyle = msoArrowheadTriangle
.EndArrowheadWidth = msoArrowheadWide
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.