Menu

Images

Create images with layers to display in the forms.

Use cases:

  • Show images in forms.

Syntax

Help
variables:
  string:
    name: value
    hidden: bool
    layers:
       source: value
       offset: value
  ...
Key Required Type Default Description
name Yes string Null The name of the image.
hidden No boolean False Set if the image is hidden or not.
layers No - - Set layers in the image.
source Yes string Null Set the source of the image.
offset Yes integer Null Set the offset of the image.

Examples

images:
  angleview:
    name: angleview
    hidden: false
    layer_frame:
      source: ""
      offset: 0
    layer_slat:
      source: ""
      offset: 1

We have created multiple images.

images:
  angleview:
    name: angleview
    hidden: false
    layer_frame:
      source: ""
      offset: 0
    layer_slat:
      source: ""
      offset: 1
  otherview:
    name: angleview
    hidden: false
    layer_frame:
      source: ""
      offset: 0
    layer_slat:
      source: ""
      offset: 1
Menu