Master Pages
How to add master pages and it apply on pages in indesign document using indesign sdk functions by programatically.
For example , creating new document and add number of pages in it by using below code :
InterfacePtr<ICommand> newDocCmd(Utils<IDocumentCommands>()->CreateNewCommand(uiflags));
InterfacePtr<INewDocCmdData> newDocCmdData(newDocCmd, UseDefaultIID());
newDocCmdData->SetCreateBasicDocument(kFalse);
newDocCmdData->SetNumPages(numPages);
I want to know about master pages like this...
