/************************************************************** * * 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_chart2_RelativeSize_idl #define com_sun_star_chart2_RelativeSize_idl module com { module sun { module star { module chart2 { /** Gives a position relative to some size defined by other means. Values from 0 to 1 cover the entire reference rectangle. Values may also be greater than one, meaning a bigger size than the reference size. Negative values are not allowed. */ struct RelativeSize { /** The extension in the primary direction. The direction is defined by the object using this point.

Typically, the direction is determined by an Orientation. Another typical use would be the direction of a given orientation-angle.

The values are relative to the page or an object. Values between 0 and 1 span the complete bounding rectangle of the page/object.

For a western Orientation this is the width.

*/ double Primary; /** The extension in the secondary direction. The direction is defined by the object using this point.

Typically, the direction is determined by an Orientation. Another typical use would be the direction perpendicular to a given orientation-angle.

The values are relative to the page or an object. Values between 0 and 1 span the complete bounding rectangle of the page/object.

For a western Orientation this is the height.

*/ double Secondary; }; } ; // chart2 } ; // com } ; // sun } ; // star #endif