Copyright © 2021 by K4.org
  (v.0.48.124)

This Design provides the basic parameters for all controls that can have child controls.

Index

Rules

__model

__model: String

Internal Use Only.

Flags : Cached, External, Update (Note this is uncached)

Expression : this.isVisible ? R.UI.makeWidget(Object.assign({}, this.spec, this.customSpec)) : R.nullHandle

margin

margin: String

This is the CSS margin property described in https://www.w3schools.com/Css/css_margin.asp. The value is used to create space around elements, outside of any defined borders. The default of "0" means no margin.

Flags : Cached, Parameter, Spec (Note this is uncached)

Expression : "0"

example

"auto" // center the element inside its parent

example

"6px" // applies on all sides

example

"6px 0px 0px 100px" // space-separated values that are applied in order top-right-bottom-left

overflowX

overflowX: String

One of 'default', 'auto'. Specifies what to do with the left/right edges of the content if it overflows the element's content area. See https://www.w3schools.com/Css/css_overflow.asp .

Flags : Cached, Parameter, Spec (Note this is uncached)

Expression : "default"

overflowY

overflowY: String

One of 'default', 'auto'. Specifies what to do with the top/bottom edges of the content if it overflows the element's content area. See https://www.w3schools.com/Css/css_overflow.asp .

Flags : Cached, Parameter, Spec (Note this is uncached)

Expression : "default"

padding

padding: String

This is the CSS padding property described in https://www.w3schools.com/Css/css_padding.asp. The value is used to generate space around an element's content, inside of any defined borders. The default of "0" means no padding.

Flags : Cached, Parameter, Spec (Note this is uncached)

Expression : "0"

example

"6px" // a single value that is applied uniformly on all sides

example

"6px 0px 0px 100px" // 4 space-separated values that are applied in order top-right-bottom-left