HorizontalRuleFormat
Contenido
[
Ocultar
]HorizontalRuleFormat class
Representa el formato de regla horizontal.
Para obtener más información, visite elTrabajar con formas artículo de documentación.
public class HorizontalRuleFormat
Propiedades
Nombre | Descripción |
---|---|
Alignment { get; set; } | Obtiene o establece la alineación de la regla horizontal. |
Color { get; set; } | Obtiene o establece el color del pincel que llena la regla horizontal. |
Height { get; set; } | Obtiene o establece la altura de la regla horizontal. |
NoShade { get; set; } | Indica la presencia de sombreado 3D para la regla horizontal. Siverdadero entonces la regla horizontal no tiene sombreado 3D y se utiliza un color sólido. |
WidthPercent { get; set; } | Obtiene o establece la longitud de la regla horizontal especificada expresada como porcentaje del ancho de la ventana. |
Ejemplos
Muestra cómo insertar una forma de regla horizontal y personalizar su formato.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertHorizontalRule();
HorizontalRuleFormat horizontalRuleFormat = shape.HorizontalRuleFormat;
horizontalRuleFormat.Alignment = HorizontalRuleAlignment.Center;
horizontalRuleFormat.WidthPercent = 70;
horizontalRuleFormat.Height = 3;
horizontalRuleFormat.Color = Color.Blue;
horizontalRuleFormat.NoShade = true;
Assert.True(shape.IsHorizontalRule);
Assert.True(shape.HorizontalRuleFormat.NoShade);
Ver también
- espacio de nombres Aspose.Words.Drawing
- asamblea Aspose.Words