NoShade

HorizontalRuleFormat.NoShade property

Zeigt das Vorhandensein einer 3D-Schattierung für die horizontale Regel an. WennWAHR dann ist die horizontale Regel ohne 3D-Schattierung und es wird Volltonfarbe verwendet.

public bool NoShade { get; set; }

Bemerkungen

Der Standardwert istFALSCH.

Beispiele

Zeigt, wie man eine horizontale Regelform einfügt und deren Formatierung anpasst.

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);

Siehe auch