value class Skip


Defines how many rows and/or columns to skip, starting from the given position. For Grid, specify the Skip with Skip(position, rows, columns) For Row/Column, specify the Skip with Skip(position, size)

Summary

Public constructors

Skip(position: @IntRange(from = 0) Int, size: @IntRange(from = 1) Int)
Skip(
    position: @IntRange(from = 0) Int,
    rows: @IntRange(from = 1) Int,
    columns: @IntRange(from = 1) Int
)

Public properties

String

string to specify span.

Public constructors

Skip

Added in 1.1.0-alpha14
Skip(position: @IntRange(from = 0) Int, size: @IntRange(from = 1) Int)

Skip

Added in 1.1.0-alpha14
Skip(
    position: @IntRange(from = 0) Int,
    rows: @IntRange(from = 1) Int,
    columns: @IntRange(from = 1) Int
)

Public properties

description

Added in 1.1.0-alpha14
val descriptionString

string to specify span. For Grid: "position:rowsxcolumns"; For Row/Columns: "position:size"