Lines Matching refs:xDrawPages
57 XDrawPages xDrawPages = xDrawPagesSupplier.getDrawPages(); in getDrawPageCount() local
58 return xDrawPages.getCount(); in getDrawPageCount()
70 XDrawPages xDrawPages = xDrawPagesSupplier.getDrawPages(); in getDrawPageByIndex() local
71 return (XDrawPage)UnoRuntime.queryInterface(XDrawPage.class, xDrawPages.getByIndex( nIndex )); in getDrawPageByIndex()
83 XDrawPages xDrawPages = xDrawPagesSupplier.getDrawPages(); in insertNewDrawPageByIndex() local
84 return xDrawPages.insertNewByIndex( nIndex ); in insertNewDrawPageByIndex()
94 XDrawPages xDrawPages = xDrawPagesSupplier.getDrawPages(); in removeDrawPage() local
95 xDrawPages.remove( xDrawPage ); in removeDrawPage()
120 XDrawPages xDrawPages = xMasterPagesSupplier.getMasterPages(); in getMasterPageCount() local
121 return xDrawPages.getCount(); in getMasterPageCount()
133 XDrawPages xDrawPages = xMasterPagesSupplier.getMasterPages(); in getMasterPageByIndex() local
134 return (XDrawPage)UnoRuntime.queryInterface(XDrawPage.class, xDrawPages.getByIndex( nIndex )); in getMasterPageByIndex()
145 XDrawPages xDrawPages = xMasterPagesSupplier.getMasterPages(); in insertNewMasterPageByIndex() local
146 return xDrawPages.insertNewByIndex( nIndex ); in insertNewMasterPageByIndex()
156 XDrawPages xDrawPages = xMasterPagesSupplier.getMasterPages(); in removeMasterPage() local
157 xDrawPages.remove( xDrawPage ); in removeMasterPage()