Example usage for javafx.scene Cursor CLOSED_HAND

List of usage examples for javafx.scene Cursor CLOSED_HAND

Introduction

In this page you can find the example usage for javafx.scene Cursor CLOSED_HAND.

Prototype

Cursor CLOSED_HAND

To view the source code for javafx.scene Cursor CLOSED_HAND.

Click Source Link

Document

A cursor with a hand that is closed, often used when "grabbing", for example, when panning.

Usage

From source file:view.EditorView.java

@FXML
void insertRoomOnMousePressed(@SuppressWarnings("unused") MouseEvent event) {
    insertRoom.setCursor(Cursor.CLOSED_HAND);
}