styledEllipse
inline fun styledEllipse(centerX: Double = 0.0, centerY: Double = 0.0, radiusX: Double = 0.0, radiusY: Double = 0.0, vararg styleClass: String, id: String? = null): Ellipse
Create a styled Ellipse.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledEllipse(centerX: Double = 0.0, centerY: Double = 0.0, radiusX: Double = 0.0, radiusY: Double = 0.0, vararg styleClass: String, id: String? = null): Ellipse
Add a styled Ellipse to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledEllipse(centerX: Double = 0.0, centerY: Double = 0.0, radiusX: Double = 0.0, radiusY: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: Ellipse.() -> Unit): Ellipse
Create a styled Ellipse with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun NodeContainer.styledEllipse(centerX: Double = 0.0, centerY: Double = 0.0, radiusX: Double = 0.0, radiusY: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: Ellipse.() -> Unit): Ellipse
Add a styled Ellipse with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.