Propiedad Paragraph.FirstLineIndent (Word)

Devuelve o establece el valor (en puntos) de la primera línea o francesa sangría. Use un valor positivo para establecer una sangría de primera línea y usar un valor negativo para establecer una sangría francesa. Lectura y escritura único.

Sintaxis

expresión. FirstLineIndent

Expresión Variable que representa un objeto 'Paragraph'.

Ejemplo:

This example sets a first-line indent of 1 inch for the first paragraph in the active document.

ActiveDocument.Paragraphs(1).FirstLineIndent = _ 
 InchesToPoints(1)

This example sets a hanging indent of 0.5 inch for the second paragraph in the active document. The InchesToPoints method is used to convert inches to points.

ActiveDocument.Paragraphs(2).FirstLineIndent = _ 
 InchesToPoints(-0.5)

Consulte también

Objeto Paragraph

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.