📄 hdflowlevelparsinglistener.java
字号:
package org.apache.poi.hdf.event;import org.apache.poi.hdf.model.hdftypes.ChpxNode;import org.apache.poi.hdf.model.hdftypes.PapxNode;import org.apache.poi.hdf.model.hdftypes.SepxNode;import org.apache.poi.hdf.model.hdftypes.TextPiece;import org.apache.poi.hdf.model.hdftypes.DocumentProperties;import org.apache.poi.hdf.model.hdftypes.FontTable;import org.apache.poi.hdf.model.hdftypes.ListTables;import org.apache.poi.hdf.model.hdftypes.StyleSheet;public interface HDFLowLevelParsingListener{ public void mainDocument(byte[] mainDocument); public void tableStream(byte[] tableStream); public void document(DocumentProperties dop); public void bodySection(SepxNode sepx); public void paragraph(PapxNode papx); public void characterRun(ChpxNode chpx); public void hdrSection(SepxNode sepx); public void endSections(); public void text(TextPiece t); public void fonts(FontTable fontTbl); public void lists(ListTables listTbl); public void styleSheet(StyleSheet stsh); public void miscellaneous(int fcMin, int ccpText, int ccpFtn, int fcPlcfhdd, int lcbPlcfhdd);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -