SizeInPoints

ShapeBase.SizeInPoints property

Obtient la taille de la forme en points.

public SizeF SizeInPoints { get; }

Exemples

Montre comment vérifier la taille et le langage de balisage d’une forme.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

Shape shape = builder.InsertImage(ImageDir + "Transparent background logo.png");

Assert.AreEqual(ShapeMarkupLanguage.Dml, shape.MarkupLanguage);
Assert.AreEqual(new SizeF(300, 300), shape.SizeInPoints);

Voir également