Skip to content

UI.Hyperlink

Name Mandatory Description Default Type
⬅️ Input The URL. String
Output ➡️ The output of this shard will be its input. String
Label No Optional label for the hyperlink. none StringNone
Style No The text style. none {Any}Var({Any})

A clickable hyperlink.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
@wire(ui-wire {
  UI.Window(
    Title: "UI Hyperlink"
    Position: @f2(0 0)
    Anchor: Anchor::Center
    Width: 700
    Height: 400
    Contents: {
      "https://docs.fragcolor.com"
      UI.Hyperlink(
        Label: "Fragcolor documentation"
        Style: {italics: true}
      )
    }
  )
} Looped: true)

{ui-behavior: ui-wire}


 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
@wire(ui-wire {
  UI.Window(
    Title: "UI Hyperlink"
    Position: @f2(0 0)
    Anchor: Anchor::Center
    Width: 700
    Height: 400
    Contents: {
      "https://docs.fragcolor.com"
      UI.Hyperlink(Label: "Fragcolor documentation")
    }
  )
} Looped: true)

{ui-behavior: ui-wire}