/**************************************************************
 * 
 * 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_PrintPreviewSettings_idl__ 
#define __com_sun_star_text_PrintPreviewSettings_idl__ 
 
#ifndef __com_sun_star_text_NotePrintMode_idl__ 
#include <com/sun/star/text/NotePrintMode.idl> 
#endif 
 
 
//============================================================================= 
 
 module com {  module sun {  module star {  module text {  
 
//============================================================================= 
 
/** These properties describe the printing of the content of a text document.
 * 
 *  @deprecated since OpenOffice 3.3
 */
published service PrintPreviewSettings
{ 
    /** All properties have the property attribute 'maybevoid'
	meaning: if none of them have been set, they all will return a void value, if any
	one of them has been set, then none of them will be void any longer */

    /** Size of the left margin */
    [property, maybevoid] long PreviewPrintLeftMargin;

    /** Size of the right margin */
    [property, maybevoid] long PreviewPrintRightMargin;

    /** Size of the top margin */
    [property, maybevoid] long PreviewPrintTopMargin;

    /** Size of the bottom margin */
    [property, maybevoid] long PreviewPrintBottomMargin;
    
    /** Size of the horizontal spacing */
    [property, maybevoid] long PreviewPrintHorizontalSpacing;
    
    [property, maybevoid] long PreviewPrintVerticalSpacing;

    /** Number of Rows */
    [property, maybevoid] byte PreviewPrintNumRows;

    /** Number of Columns */
    [property, maybevoid] byte PreviewPrintNumColumns;

    /** If the format is landscape (if false then the format is portrait */
    [property, maybevoid] boolean PreviewPrintLandscape;
}; 
 
//============================================================================= 
 
}; }; }; };  
 
#endif