SizeInPoints
ShapeBase.SizeInPoints property
Ottiene la dimensione della forma in punti.
public SizeF SizeInPoints { get; }
Esempi
Mostra come verificare le dimensioni e il linguaggio di markup di una forma.
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);
Guarda anche
- class ShapeBase
- spazio dei nomi Aspose.Words.Drawing
- assemblea Aspose.Words