Examples of useSection()


Examples of com.intellij.openapi.graph.option.OptionHandler.useSection()

  public static OptionHandler createPrintOptions() {
    //setup option handler
    final OptionHandler handler = GraphManager.getGraphManager().createOptionHandler(GraphBundle.message("graph.framework.printing.options"));

    handler.useSection(GENERAL_SECTION);
    handler.addInt(POSTER_ROWS, 1);
    handler.addInt(POSTER_COLUMNS, 1);
    handler.addBool(POSTER_COORDS, false);
    final String[] area = {VIEW, GRAPH};
    handler.addEnum(CLIP_AREA, area, 1);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.