(This is with syncfusion.pdf.net.core/23.1.44)
I'm loading an XFA PDF like so:
using var fs = System.IO.File.OpenRead(@"…");
var pdf = new Syncfusion.Pdf.Xfa.PdfLoadedXfaDocument(fs);
Syncfusion does seem to give me all the fields and their types. However, for combo boxes, the Items property always seems to be empty, even though Adobe Acrobat does show combo box items. Do I need to call a method to fetch the items?