Hi,
we have a tool that needs to change class options while the tool is active.
When user deactivates the tool we reset class options to the state it had before the tool was activated.
We use this calls to achieve that:
gSDK->GetProgramVariable(varClassOptions, &previousClassOption);
gSDK->SetProgramVariable(varClassOptions, &newClassOption);
This works as expected when the document has one view pane.
It does not work as expected, when the document has multiple view panes.
With multiple view panes the document can have different class options set per view pane.
That means, we need to Get/Set class options per view pane.
Is there a way to Get/Set class options per view pane?
Regards,
Matthias