toolbars.java
来自「Java生成PDF Java生成PDF Java生成PDF」· Java 代码 · 共 25 行
JAVA
25 行
// $Id: Toolbars.java,v 1.6 2007/09/12 10:04:59 mike Exp $package org.faceless.pdf2.viewer2.feature;import org.faceless.pdf2.viewer2.*;/** * A special feature that creates the toolbars in the {@link PDFViewer}. * The name of this feature is "Toolbars". * <p><i>This code is copyright the Big Faceless Organization. You're welcome to use, modify and distribute it in any form in your own projects, provided those projects continue to make use of the Big Faceless PDF library.</i></p> * @since 2.8 */public final class Toolbars extends ViewerFeature{ private static Toolbars instance; public static ViewerFeature getInstance() { if (instance==null) instance = new Toolbars(); return instance; } private Toolbars() { super("Toolbars"); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?