Browse our Products
Aspose.Slides for C++ 22.1 Release Notes
This page contains release notes for Aspose.Slides for C++ 22.1
Supported Platforms
- Aspose.Slides for C++ for Windows x64 (Microsoft Visual C++).
- Aspose.Slides for C++ for Windows x86 (Microsoft Visual C++).
- Aspose.Slides for C++ for Linux (Clang).
New Features and Enhancements
Key | Summary | Category | Related Documentation |
---|---|---|---|
SLIDESNET-42856 | Custom table style is lost after cloning to another presentation | Enhancement | https://docs.aspose.com/slides/cpp/clone-slides/ |
SLIDESNET-42964 | Incorrect word breaks for text frames after export or rasterization | Enhancement | https://docs.aspose.com/slides/cpp/convert-slide/ |
Other Improvements and Changes
Key | Summary | Category | Related Documentation |
---|---|---|---|
SLIDESCPP-3225 | Use Aspose.Slides for .NET 22.1 features | Enhancement |
Public API Changes
None member have been added to TimeUnitType enumeration
A new None member have been added to TimeUnitType enumeration. This member indicates that no unit should be set for the appropriate unit scale.
using namespace Aspose::Slides;
using namespace Aspose::Slides::Charts;
using namespace Aspose::Slides::Export;
auto pres = System::MakeObject<Presentation>();
auto chart = pres->get_Slides()->idx_get(0)->get_Shapes()->AddChart(ChartType::Area, 10.0f, 10.0f, 400.0f, 300.0f, true);
chart->get_Axes()->get_HorizontalAxis()->set_MajorUnitScale(TimeUnitType::None);
pres->Save(u"chart.pptx", SaveFormat::Pptx);