Question
How to represent 'basic style'? Is it possible to directly copy the 'none' style?
Hi everyone~
The 'none' in cell style and object style seems to indicate:
noneCellSty = app.documents[0].cellStyles.itemByName('[None]');
noneCellSty.duplicate();I tried to copy the None style directly, but it is failed. Perhaps I have to create a new 'trueOne' style based on [None] to control it.
another question:
how to represent 'basic paragraph style' and 'no paragraph style'?
Like this:
noneBasePar = app.documents[0].paragraphStyles.itemByName('[None]');And ,How to express the 'basic paragraph'?
Thank you.

