Package | Description |
---|---|
org.netbeans.api.visual.print |
This package contains a single class
ScenePrinter used to print
a Scene according to various constraints. |
Modifier and Type | Method and Description |
---|---|
static ScenePrinter.ScaleStrategy |
ScenePrinter.ScaleStrategy.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScenePrinter.ScaleStrategy[] |
ScenePrinter.ScaleStrategy.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static void |
ScenePrinter.print(Scene scene,
PageFormat format,
ScenePrinter.ScaleStrategy scaleStrategy)
Print the Scene with the provided format and scale type.
|
static void |
ScenePrinter.print(Scene scene,
PageFormat format,
ScenePrinter.ScaleStrategy scaleStrategy,
double scaleX,
double scaleY,
boolean selectedOnly,
boolean visibleOnly,
Rectangle region,
List<LayerWidget> hiddenLayers)
This is the master print call.
|
static void |
ScenePrinter.print(Scene scene,
ScenePrinter.ScaleStrategy scaleStrategy)
Print the Scene with the default PageFormat and the provided scale type.
|