[![][1] Here we have a new release of Aspose.Slides for C++ 19.9, which has been enriched with new features. It can now support managing paragraph with custom numbered list. For this purpose, NumberedBulletStartWith property has been added to **IBulletFormat. **

In order to add a custom number list inside a paragraph, you first need to access the slide and add an auto shape. Then, you have to access the respective TextFrame of the shape and remove the default paragraph in that. Then create the first paragraph instance using Paragraph class and set **NumberedBulletStartWith **to 2 and second paragraph instance and set NumberedBulletStartWith 3.

The following code sample shows how to set a Paragraph with a custom numbered list.

// The path to the documents directory.
const String templatePath = u"../templates/test.zip";
const String outPath = u"../out/SetFileTypeForAnEmbeddingObject.pptx";
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>();
// Add known Ole objects
System::ArrayPtr<uint8_t> fileBytes = System::IO::File::ReadAllBytes(templatePath);
// Create Ole embedded file info
System::SharedPtr<IOleEmbeddedDataInfo> dataInfo = System::MakeObject<IOleEmbeddedDataInfo>(fileBytes, u"zip");
// Create OLE object
System::SharedPtr<IOleObjectFrame> oleFrame = pres->get_Slides()->idx_get(0)->get_Shapes()->AddOleObjectFrame(150.0f, 20.0f, 50.0f, 50.0f, dataInfo);
oleFrame->set_IsObjectIcon(true);
pres->Save(outPath, Aspose::Slides::Export::SaveFormat::Pptx);

Wait, there’s many other features, enhancement, and bug fixes included in this release. Here you can get the detail!

When time allows you can check out API [examples at Github][2], talk about this release and other API related issues in our [forum][3].

[1]: https://blog.aspose.com/wp-content/uploads/sites/2/2017/12/aspose_slides-for-cpp-128x128.png “Aspose.Slides for C++ logo”)](https://blog.aspose.com/wp-content/uploads/sites/2/2017/12/aspose_slides-for-cpp-128x128.png [2]: https://github.com/aspose-slides/ [3]: https://forum.aspose.com/c/slides