Computer >> Máy Tính >  >> Lập trình >> Java

Nguồn gốc văn bản trong JavaFX là gì?


Ngoài hệ tọa độ cục bộ để định vị các nút của nó, JavaFX cung cấp một hệ tọa độ bổ sung cho nút văn bản.

textOrigin thuộc tính chỉ định nguồn gốc tọa độ của nút văn bản trong hệ tọa độ mẹ. Bạn có thể đặt các giá trị cho thuộc tính này bằng cách sử dụng setTextOrigin () phương pháp. Phương thức này chấp nhận một trong các hằng số của enum có tên VPos. Enum này chứa 4 hằng số là:BASELINE, BOTTOM, CENTER và, TOP.

Ví dụ

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.util.Scanner;
import javafx.application.Application;
import javafx.geometry.VPos;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
import javafx.scene.text.Text;
public class TextOriginExample extends Application {
   public void start(Stage stage) throws FileNotFoundException {
      //Reading the contents of a text file.
      InputStream inputStream = new FileInputStream("D:\\sample_text.txt");
      Scanner sc = new Scanner(inputStream);
      StringBuffer sb = new StringBuffer();
      while(sc.hasNext()) {
         sb.append(" "+sc.nextLine()+"\n");
      }
      //Creating a text object
      Text text = new Text(10.0, 25.0, sb.toString());
      //Wrapping the text
      text.setWrappingWidth(565);
      //Setting the vertical positioning
      text.setTextOrigin(VPos.TOP);
      //Setting the stage
      Group root = new Group(text);
      Scene scene = new Scene(root, 595, 150, Color.BEIGE);
      stage.setTitle("Text Origin (TOP)");
      stage.setScene(scene);
      stage.show();
   }
   public static void main(String args[]){
      launch(args);
   }
}

sample.txt

Giả sử sau đây là nội dung của tệp sample.txt -

Tutorials Point originated from the idea that there exists a class of readers who respond better 
to online content and prefer to learn new skills at their own pace from the comforts of their drawing rooms.
The journey commenced with a single tutorial on HTML in 2006 and elated by the response it generated, 
we worked our way to adding fresh tutorials to our repository which now proudly flaunts a wealth of 
tutorials and allied articles on topics ranging from programming languages to web designing to academics 
and much more.

Đầu ra

Nguồn gốc văn bản trong JavaFX là gì?

Theo cách tương tự, nếu bạn thay đổi giá trị căn chỉnh, bạn sẽ nhận được kết quả đầu ra tương ứng như -

BASELINE -

Nguồn gốc văn bản trong JavaFX là gì?

ĐÁY -

Nguồn gốc văn bản trong JavaFX là gì?

TRUNG TÂM -

Nguồn gốc văn bản trong JavaFX là gì?