CSSPosition

Overview

The CSSPosition interface in the Servoy environment provides methods for managing and manipulating CSS position properties such as left, right, top, bottom, width, and height. It allows both getting and setting these properties in pixels or percentages, with chaining methods for streamlined updates. The interface supports use cases in Servoy NG Client only.

Properties Summarized

Type
Name
Summary

Get/Set bottom css position (in pixels or percent).

Get/Set height css position (in pixels or percent).

Get/Set left css position (in pixels or percent).

Get/Set right css position (in pixels or percent).

Get/Set top css position (in pixels or percent).

Get/Set width css position (in pixels or percent).

Methods Summarized

Type
Name
Summary

Set bottom css position (in pixels or percent).

Set height css position (in pixels or percent).

Set left css position (in pixels or percent).

Set right css position (in pixels or percent).

Set top css position (in pixels or percent).

Set width css position (in pixels or percent).

Properties Detailed

bottom

Get/Set bottom css position (in pixels or percent).

Type String The bottom CSS position as a string, in pixels or percentage.

Sample

comp.cssPosition.bottom

height

Get/Set height css position (in pixels or percent).

Type String The height CSS position as a string, in pixels or percentage.

Sample

comp.cssPosition.height

left

Get/Set left css position (in pixels or percent).

Type String The left CSS position as a string, in pixels or percentage.

Sample

var left = comp.cssPosition.left;

Get/Set right css position (in pixels or percent).

Type String The right CSS position as a string, in pixels or percentage.

Sample

comp.cssPosition.right

top

Get/Set top css position (in pixels or percent).

Type String The top CSS position as a string, in pixels or percentage.

Sample

comp.cssPosition.top

width

Get/Set width css position (in pixels or percent).

Type String width css position

Sample

comp.cssPosition.width

Methods Detailed

b(bottom)

Set bottom css position (in pixels or percent).

Parameters

  • String bottom bottom position in pixels or percentage

Returns: CSSPosition css position

Sample

comp.cssPosition.r("10").b("10").w("20%").h("30px")

h(height)

Set height css position (in pixels or percent).

Parameters

  • String height height position in pixels or percentage

Returns: CSSPosition css position

Sample

comp.cssPosition.l("10").t("10").w("20%").h("30px")

l(left)

Set left css position (in pixels or percent).

Parameters

  • String left left position in pixels or percentage

Returns: CSSPosition css position

Sample

comp.cssPosition.l("10").t("10").w("20%").h("30px")

r(right)

Set right css position (in pixels or percent).

Parameters

  • String right right position in pixels or percentage

Returns: CSSPosition css position

Sample

comp.cssPosition.r("10").b("10").w("20%").h("30px")

t(top)

Set top css position (in pixels or percent).

Parameters

  • String top top position in pixels or percentage

Returns: CSSPosition css position

Sample

comp.cssPosition.l("10").t("10").w("20%").h("30px")

w(width)

Set width css position (in pixels or percent).

Parameters

  • String width width position in pixels or percentage

Returns: CSSPosition css position

Sample

comp.cssPosition.l("10").t("10").w("20%").h("30px")

Last updated

Was this helpful?