SizeInPoints

ShapeBase.SizeInPoints property

获取形状的大小(以磅为单位)。

public SizeF SizeInPoints { get; }

例子

演示如何验证形状的大小和标记语言。

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

也可以看看