TileArgs

data class TileArgs(val height: Output<Int>? = null, val widget: Output<WidgetArgs>? = null, val width: Output<Int>? = null, val xPos: Output<Int>? = null, val yPos: Output<Int>? = null) : ConvertibleToJava<TileArgs>

A single tile in the mosaic. The placement and size of the tile are configurable.

Constructors

Link copied to clipboard
fun TileArgs(height: Output<Int>? = null, widget: Output<WidgetArgs>? = null, width: Output<Int>? = null, xPos: Output<Int>? = null, yPos: Output<Int>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TileArgs

Properties

Link copied to clipboard
val height: Output<Int>? = null

The height of the tile, measured in grid blocks. Tiles must have a minimum height of 1.

Link copied to clipboard
val widget: Output<WidgetArgs>? = null

The informational widget contained in the tile. For example an XyChart.

Link copied to clipboard
val width: Output<Int>? = null

The width of the tile, measured in grid blocks. Tiles must have a minimum width of 1.

Link copied to clipboard
val xPos: Output<Int>? = null

The zero-indexed position of the tile in grid blocks relative to the left edge of the grid. Tiles must be contained within the specified number of columns. x_pos cannot be negative.

Link copied to clipboard
val yPos: Output<Int>? = null

The zero-indexed position of the tile in grid blocks relative to the top edge of the grid. y_pos cannot be negative.