styledCircle
inline fun styledCircle(centerX: Double = 0.0, centerY: Double = 0.0, radius: Double = 0.0, fill: Paint? = null, vararg styleClass: String, id: String? = null): Circle
Create a styled Circle.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledCircle(centerX: Double = 0.0, centerY: Double = 0.0, radius: Double = 0.0, fill: Paint? = null, vararg styleClass: String, id: String? = null): Circle
Add a styled Circle to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledCircle(centerX: Double = 0.0, centerY: Double = 0.0, radius: Double = 0.0, fill: Paint? = null, vararg styleClass: String, id: String? = null, configuration: Circle.() -> Unit): Circle
Create a styled Circle 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.styledCircle(centerX: Double = 0.0, centerY: Double = 0.0, radius: Double = 0.0, fill: Paint? = null, vararg styleClass: String, id: String? = null, configuration: Circle.() -> Unit): Circle
Add a styled Circle 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.