
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maruthi Krishna has Published 870 Articles

Maruthi Krishna
7K+ Views
You can set a fixed width for the text in user space by setting the value to the wrappingWidth property. Once you do so, given width is considered as the boundary of the text in user coordinates and, the text is arranged width in the given width.If you haven’t given ... Read More

Maruthi Krishna
3K+ Views
In JavaFX, the text node is represented by the Javafx.scene.text.Text class. To insert/display text in JavaFx window you need to −Instantiate the Text class.Set the basic properties like position and text string, using the setter methods or, bypassing them as arguments to the constructor.Add the created node to the Group object.If ... Read More

Maruthi Krishna
3K+ Views
Since the javafx.scene.text.Text class in JavaFX inherits the Shape class it inherits all its members. You can modify the stroke and color of the text node by setting values to the stroke, stroke width and fill properties inherited by the Text class.Stroke Width − The stroke width property specifies/defines the ... Read More

Maruthi Krishna
1K+ Views
In JavaFX, the text node is represented by the javafx.scene.text.Text class. By default, the text created by JavaFX will be as follows −Setting the desired font to the text nodeYou can set the desired font to the text node in JavaFX using the setFont() method. This method accepts an object ... Read More

Maruthi Krishna
772 Views
In JavaFX, the text node is represented by the javafx.scene.text.Text class. You can add text to a JavaFX window by instantiating this class.Following are the basic properties of the text node −X − This property represents x coordinate of the text. You can set value to this property using the ... Read More

Maruthi Krishna
229 Views
A quadratic curve is a Bezier parametric curve in the XY plane of degree 2.In JavaFX, a circle is represented by the javafx.scene.shape.QuadCurve class. It is similar to the CubicCurve but instead of 2, it is drawn using one control point.This class contains 6 properties they are −startX − This ... Read More

Maruthi Krishna
215 Views
A cubic curve is a third-degree polynomial function of two variables.In JavaFX a cubic curve is represented by the javafx.scene.shape.CubicCurve class. This class contains eight properties they are −startX − This property represents the x coordinate of the starting point of the curve. You can set the value to this ... Read More

Maruthi Krishna
378 Views
A Polyline is an open figure formed using n number of lines existing in the same plane. i.e. a polyline is the same as a polygon except it is not closed. In JavaFX a polyline is represented by the javafx.scene.shape.PolyLine class.To create a polygon you need to −Instantiate this class.Pass ... Read More

Maruthi Krishna
638 Views
A polygon is a closed figure formed using n number of lines existing in the same plane. In JavaFX a polygon is represented by the javafx.scene.shape.Polygon class.To create a polygon you need to −Instantiate this class.Pass the start and endpoints, of the line segments to draw a polygon to the ... Read More

Maruthi Krishna
369 Views
A circle is a line forming a closed loop, every point on which is a fixed distance from a center point. A circle is defined by its center and radius: distance from the center to any point on the circle.In JavaFX an ellipse is represented by the javafx.scene.shape.Ellipse class. This class ... Read More