WidthPercent
Innehåll
[
Dölj
]HorizontalRuleFormat.WidthPercent property
Hämtar eller ställer in längden på den angivna horisontella regeln uttryckt i procent av fönstrets bredd.
public double WidthPercent { get; set; }
Undantag
undantag | skick |
---|---|
ArgumentOutOfRangeException | Kastar när argumentet var utanför intervallet för giltiga värden. |
Anmärkningar
Giltiga värden sträcker sig från 1 till 100 inklusive.
Standardvärdet är 100.
Exempel
Visar hur man infogar en horisontell regelform och anpassar dess formatering.
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);
Se även
- class HorizontalRuleFormat
- namnutrymme Aspose.Words.Drawing
- hopsättning Aspose.Words