HorizontalRuleFormat
Shape.HorizontalRuleFormat property
Proporciona acceso a las propiedades de la forma de regla horizontal. Para una forma que no es una regla horizontal, devuelvenulo
.
public HorizontalRuleFormat HorizontalRuleFormat { get; }
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
- class HorizontalRuleFormat
- class Shape
- espacio de nombres Aspose.Words.Drawing
- asamblea Aspose.Words