Height

HorizontalRuleFormat.Height property

Obtient ou définit la hauteur de la règle horizontale.

public double Height { get; set; }

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionLance lorsque l’argument est hors de la plage des valeurs valides.

Remarques

Il s’agit d’un raccourci vers leHeight propriété.

Les valeurs valides vont de 0 à 1584 inclus.

La valeur par défaut est 1,5.

Exemples

Montre comment insérer une forme de règle horizontale et personnaliser sa mise en forme.

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

Voir également