Aspose::Words::Drawing::ShapeBase::get_MarkupLanguage method
ShapeBase::get_MarkupLanguage method
Gets MarkupLanguage used for this graphic object.
Aspose::Words::Drawing::ShapeMarkupLanguage Aspose::Words::Drawing::ShapeBase::get_MarkupLanguage() const
Examples
Shows how to verify a shape’s size and markup language.
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
SharedPtr<Shape> shape = builder->InsertImage(ImageDir + u"Transparent background logo.png");
ASSERT_EQ(ShapeMarkupLanguage::Dml, shape->get_MarkupLanguage());
ASPOSE_ASSERT_EQ(System::Drawing::SizeF(300.0f, 300.0f), shape->get_SizeInPoints());
See Also
- Enum ShapeMarkupLanguage
- Class ShapeBase
- Namespace Aspose::Words::Drawing
- Library Aspose.Words for C++