B4J Programming Press on the image to return to the main documentation page.

jSLColorLUT

Written by Steve Laming

List of types:

SlColorLUT

SlColorLUT


Events:

None

Members:


  AllNames() As String [read only]

  getAllNames As String()

  getAndroidColorInt (Name As String) As String

  getColorName (Hex As String) As String

  getColorOpacity (Color As Object) As Float

  getPaint (Name As String) As Object

  getRGBHex (Name As String) As String

  Initialize As String

  IsInitialized As Boolean

Members description:

AllNames() As String [read only]
Returns all color names in an array - Sorted
getAllNames As String()
Returns all color names in an array - Sorted
getAndroidColorInt (Name As String) As String
Returns the android colorint for the color name provided or NF if not found. As a string
getColorName (Hex As String) As String
Returns the string name of a color represented by the hex representation. As a string Returns "NF" if not found
getColorOpacity (Color As Object) As Float
Returns the opacity of the color as float in the range 0.0 - 1.0
Requires ajavafx.scene.paint.Color object
getPaint (Name As String) As Object
Returns a javafx.scene.paint.Paint object for the given Name
getRGBHex (Name As String) As String
Returns an RGBHex string representation of for the color name provided or NF if not found. As a string
Initialize As String
Initializes the object.
IsInitialized As Boolean
Tests whether the object has been initialized.
Top