Product: PDFTron.NET.x64
Product Version: 10.12.1
Please give a brief summary of your issue:
I’m looking for a way to get items of a pre-existent Combobox Acrofield
Please describe your issue and provide steps to reproduce it:
I’m writing a C# net8.0 solution (WebApi and ClassLibrary projects).
I added the PDFTron.NET.x64(10.12.1) nuget Package.
I can get a Field from a PDFDoc via .GetField(string field_name) method.
I can get an Annot from the Field via ctor Annot(Obj b) passing field.GetSDFObj()
I can get a ComboBoxWidget from the Annot via ctor ComboBoxWidget(Annot ann)
How can i get the options of that ComboBoxWidget? It seems I only can AddOptions, SetSelectedOptions or GetSelectedOption. If I try to GetOptions, i get an error
"‘ComboBoxWidget’ does not contain a definition for ‘GetOptions’ and no accessible extension method ‘GetOptions’ accepting a first argument of type ‘ComboBoxWidget’ could be found (are you missing a using directive or an assembly reference?) "