blob: 6f9b852cc5b5a2ce65232e3d316ccad122c2c3fc [file] [log] [blame]
/**************************************************************
*
* 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_style_LineSpacingMode_idl__
#define __com_sun_star_style_LineSpacingMode_idl__
//=============================================================================
module com { module sun { module star { module style {
//=============================================================================
// DocMerge from idl: constants com::sun::star::style::LineSpacingMode
/** These constants specify the interpretation of LineHeight.
*/
published constants LineSpacingMode
{
//-------------------------------------------------------------------------
// DocMerge from idl: value com::sun::star::style::LineSpacingMode::PROP
/** This constant specifies the height value as a proportional value.
*/
const short PROP = 0;
//-------------------------------------------------------------------------
// DocMerge from idl: value com::sun::star::style::LineSpacingMode::MINIMUM
/** This constant specifies the height as the minimum line height.
*/
const short MINIMUM = 1;
//-------------------------------------------------------------------------
// DocMerge from idl: value com::sun::star::style::LineSpacingMode::LEADING
/** This constant specifies the height value as the distance to the previous line.
*/
const short LEADING = 2;
//-------------------------------------------------------------------------
// DocMerge from idl: value com::sun::star::style::LineSpacingMode::FIX
/** This constant specifies the height value as a fixed line height.
*/
const short FIX = 3;
};
//=============================================================================
}; }; }; };
/*=============================================================================
=============================================================================*/
#endif