When converting xlsx to pdf, Aspose.Cells automatically loads any linked files, like images, that are not embedded inside xlsx. Is there any way to block that? Aspose.Words allows me to block them using ResourceLoadingCallback:
Document = new Aspose.Words.Document(fileStream, new LoadOptions(GetDocumentFormat(fileName), "", "")
{
ResourceLoadingCallback = new ResourceLoader()
});