Product: C++ SDK
Product Version: 10.4.8.2779
Please give a brief summary of your issue:
(Think of this as an email subject)
Changing the tab order for form fields of a page doesn’t work.
Please describe your issue and provide steps to reproduce it:
(The more descriptive your answer, the faster we are able to help you)
When i change the entry for the tab order in a page object, the correct entry is selected in the viewer (for example in Adobe Acrobat). But the tab order of the fields itself remains the same.
I try to set the tab order from structural
to row
the following way:
for(int nSeite = 0; nSeite < dokument.nSeiteAnzahl; ++nSeite)
{
pdftron::PDF::page page = dokument.pPDFSeite[nSeite]->page;
pdftron::SDF::Obj tabs = page.GetSDFObj().FindObj("Tabs");
if (tabs)
tabs.SetName("R");
}
I also tried to refresh the appearances:
dokument.pPDFDoc->RefreshFieldAppearances();
But this also doesn’t have an effect.
Am i something missing here?
Thanks!