All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.hssf.record.chart.ChartTitleFormatRecord Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   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.
==================================================================== */

/*
 * HSSF Chart Title Format Record Type
 */
package org.apache.poi.hssf.record.chart;

import org.apache.poi.hssf.record.RecordInputStream;
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.LittleEndianOutput;

/**
 * CHARTTITLEFORMAT (0x1050)

* Describes the formatting runs associated with a chart title. */ public class ChartTitleFormatRecord extends StandardRecord { public static final short sid = 0x1050; private CTFormat[] _formats; private static final class CTFormat { public static final int ENCODED_SIZE=4; private int _offset; private int _fontIndex; public CTFormat(RecordInputStream in) { _offset = in.readShort(); _fontIndex = in.readShort(); } public int getOffset(){ return _offset; } public void setOffset(int newOff){ _offset = newOff; } public int getFontIndex() { return _fontIndex; } public void serialize(LittleEndianOutput out) { out.writeShort(_offset); out.writeShort(_fontIndex); } } public ChartTitleFormatRecord(RecordInputStream in) { int nRecs = in.readUShort(); _formats = new CTFormat[nRecs]; for(int i=0;i





© 2015 - 2024 Weber Informatics LLC | Privacy Policy