📄 hdfparsinglistener.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -