StyleCode Property: labelBorder

labelBorder

Specifies the sides of the label where a border is displayed.
Can accept any combination of “bottom”, “left”, “right”, and “top”, separated by commas if there are more than one.
Can be set to “none” or “all” for respectively the empty set and the full set of values.

Applies to Type Default
assert
label
menu > entry
all, none, Set(bottom,left,top,right) bottom

Examples

// Example: assert
myAssertion = false

show assert "My Assert" a1b1 { labelBorder: "all" } with
  myAssertion

// Example: label
show label "My Label" a1b1 { labelBorder: "all" }

// Example: menu > entry
show menu "" a1b3 with
  "Section" { labelBorder: "all" }

User Contributed Notes
0 notes + add a note