Interface BootstrapColumnControl

All Superinterfaces:
BackgroundStyleProperties, BootstrapWidthProperties, BorderStyleProperties, ContainerControl, Control, Element, EventOwner, LayoutControl, MarginStyleProperties, MessageContainer, MessageProperties, PaddingStyleProperties, java.io.Serializable, TextStyleProperties, WebFormEventOwner

public interface BootstrapColumnControl
extends LayoutControl, BackgroundStyleProperties, BorderStyleProperties, PaddingStyleProperties, MarginStyleProperties, TextStyleProperties, BootstrapWidthProperties
Bootstrap Column Control

A container representing a column within the bootstrap framework. Outside of this framework it functions as a simple div. Can only be placed in a Bootstrap Row Control.

  <div>
  .. child controls
  </div>
  
Further documentation.
Since:
5.4
  • Method Details

    • getHeight

      java.lang.String getHeight()
      Column height. This is equivalent to the CSS height property, and any valid value for this CSS property can be used when setting a value.
      Since:
      V5.4
      See Also:
      setHeight(String)
    • setHeight

      void setHeight​(java.lang.String height)
      Sets the Column height, and is equivalent to the CSS height property and any valid value for this CSS property can be used. Setting this property to null removes any existing value.

      Examples:

       controls.COLUMN1.height = "50px";
       controls.COLUMN1.setHeight("100px");
       
      Since:
      V5.4
    • getVerticalAlignment

      java.lang.String getVerticalAlignment()
      How the column is vertically itself in its owning row
      Since:
      V5.4
      See Also:
      setVerticalAlignment(String)
    • setVerticalAlignment

      void setVerticalAlignment​(java.lang.String alignment)
      Vertically aligns this column within its row.

      Possible values are: Start - Aligns to the start (often the top) of the row. Center - Aligns to the center of the row. End - Aligns to the end (often the bottom) of the row. Example:

       controls.COLUMN1.verticalAlignment = "Start";
       controls.COLUMN1.setVerticalAlignment("Center");
       
      Since:
      V5.4