I am using aspose cell v19.1.0 in .netcore console application.
As per documentation - https://reference.aspose.com/net/cells/aspose.cells.rendering/imageorprintoptions/properties/index, ImageOrPrintOption has property called SmoothingMode, but i am unable to add it. When i add in my code as below
ImageOrPrintOptions opt = new ImageOrPrintOptions()
{
ImageType = ImageType.Png,
SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality
};
it is throwing compilation error as ImageOrPrintOptions does not contain definition of SmoothingMode. How to access this property?