/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_text_PagePrintSettings_idl__ #define __com_sun_star_text_PagePrintSettings_idl__ //============================================================================= module com { module sun { module star { module text { //============================================================================= // DocMerge from xml: service com::sun::star::text::PagePrintSettings /** These properties describe the way the XPagePrintable interface prints the page on one printer page. */ published service PagePrintSettings { //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::PageRows /** contains the number of pages per printed column of pages. */ [property] short PageRows; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::PageColumns /** contains the number of pages per printed row of pages. */ [property] short PageColumns; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::LeftMargin /** contains the left margin of the printer page. */ [property] long LeftMargin; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::RightMargin /** contains the right margin of the printer page. */ [property] long RightMargin; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::TopMargin /** contains the top margin of the printer page. */ [property] long TopMargin; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::BottomMargin /** contains the right margin of the printer page. */ [property] long BottomMargin; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::HoriMargin /** contains the margin between the rows of printed pages. */ [property] long HoriMargin; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::VertMargin /** contains the margin between the columns of printed pages. */ [property] long VertMargin; //------------------------------------------------------------------------- // DocMerge from xml: property com::sun::star::text::PagePrintSettings::IsLandscape /** defines if the printer page is used in landscape format. */ [property] boolean IsLandscape; }; //============================================================================= }; }; }; }; #endif