Gets Parent AtomControl of this control.
Represents associated AtomStyleSheet with this visual hierarchy. AtomStyleSheet is inherited by default.
Represents associated AtomStyleSheet with this visual hierarchy. AtomStyleSheet is inherited by default.
Do not ever use, only available as intellisense feature for vs code editor.
Control checks if property is declared on the control or not.
Since TypeScript no longer creates enumerable properties, we have
to inspect name and PropertyMap which is generated by @BindableProperty
or the value is not set to undefined.
name of Property
Use this method if you want to set attribute on HTMLElement immediately but defer atom control property
HTMLElement
string
any
Remove all bindings associated with given element and optional name
T
string
Generated using TypeDoc
GridView columns or rows can accept comma separated strings with absolute pixel value, percent value and star (*).
For example, 20% of total width for first column, 200 pixel for last column and rest of the space is for middle = "20%, *, 200"
You can have only one star specification.
<!-- Header spans for three columns in first row --> <header row="0" column="0:3"></header> <!-- menu is on first column --> <menu row="1" column="0"></menu> <!-- Grid splitter splits 1st and 3rd column and itself lies in 2nd column --> <AtomGridSplitter row="1" column="1" direction="vertical" /> <!-- Section fills remaining area --> <section row="1" column="2"></section> <!-- Help sits on last column --> <Help row="1" column="3"></Help>