hdfparsinglistener.java

来自「Office格式转换代码」· Java 代码 · 共 20 行

JAVA
20
字号
package org.apache.poi.hdf.event;import org.apache.poi.hdf.model.hdftypes.SectionProperties;import org.apache.poi.hdf.model.hdftypes.CharacterProperties;import org.apache.poi.hdf.model.hdftypes.ParagraphProperties;import org.apache.poi.hdf.model.hdftypes.TableProperties;import org.apache.poi.hdf.model.hdftypes.DocumentProperties;public interface HDFParsingListener{  public void document(DocumentProperties dop);  public void section(SectionProperties sep, int start, int end);  public void paragraph(ParagraphProperties pap, int start, int end);  public void listEntry(String bulletText, CharacterProperties bulletProperties, ParagraphProperties pap, int start, int end);  public void paragraphInTableRow(ParagraphProperties pap, int start, int end);  public void characterRun(CharacterProperties chp, String text, int start, int end);  public void tableRowEnd(TableProperties tap, int start, int end);  public void header(int sectionIndex, int type);  public void footer(int sectionIndex, int type);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?